Spaces:
Paused
Paused
FROM node:20 | |
COPY . . | |
RUN npm i --omit=dev --no-package-lock | |
USER node | |
# Set the entry point script as the default command | |
CMD ["python3", "app.py"] | |
EXPOSE 7860 |