added more files

This commit is contained in:
Dobromir Popov
2023-08-22 20:48:52 +00:00
parent 7de7e607f9
commit a3aa17bcc8
3 changed files with 60 additions and 6 deletions

View File

@ -1,13 +1,11 @@
# dobromirpopov/pynode
FROM python:slim
# System dependencies and Node.js/npm installation
RUN apt-get update \
&& apt-get install -y git curl nodejs npm \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
## 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
## Upgrade pip
RUN pip install --upgrade pip
# Verify installations