Add nodejs and npm to image

This commit is contained in:
Frank Agerholm 2024-12-04 21:09:55 +01:00
commit a85e2a090e
No known key found for this signature in database

View file

@ -1,6 +1,6 @@
FROM docker.io/library/python:3.11-alpine
RUN apk --no-cache add sshpass openssh-client lftp; mkdir -p /opt/app
RUN apk --no-cache add sshpass openssh-client lftp nodejs npm; mkdir -p /opt/app
WORKDIR /opt/app
ADD requirements.txt /root/
ADD Dockerfile /root/