13 lines
294 B
Docker
13 lines
294 B
Docker
# dobromirpopov/pynode
|
|
FROM python:slim
|
|
|
|
## System dependencies and Node.js/npm installation
|
|
RUN apt-get update && apt-get install -y \
|
|
git curl nodejs npm gnupg2 wget build-essential
|
|
|
|
## Upgrade pip
|
|
RUN pip install --upgrade pip
|
|
|
|
# Verify installations
|
|
RUN node --version && npm --version
|