Files
scripts/docker/py+npm.dockerfile
Dobromir Popov a3aa17bcc8 added more files
2023-08-22 20:48:52 +00:00

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