Spaces:
Paused
Paused
FROM node:20 | |
COPY . . | |
RUN npm i --omit=dev --no-package-lock | |
USER node | |
COPY entrypoint.sh /entrypoint.sh | |
RUN chmod +x /entrypoint.sh | |
# Set the entry point script as the default command | |
ENTRYPOINT ["/entrypoint.sh"] | |