test1234 / Dockerfile
mahiatlinux's picture
Update Dockerfile
e08f038 verified
raw history blame
No virus
194 Bytes
FROM node:20
COPY . .
RUN npm i --omit=dev --no-package-lock
USER node
# Set the entry point script as the default command
RUN ["python3", "server.py"]
CMD ["python3", "app.py"]
EXPOSE 7860