test1234 / Dockerfile
mahiatlinux's picture
Update Dockerfile
6207d4a verified
raw
history blame
156 Bytes
FROM node:20
COPY . .
RUN npm i --omit=dev --no-package-lock
USER node
# Set the entry point script as the default command
CMD node ./src/index.js && wait