test1234 / Dockerfile
mahiatlinux's picture
Update Dockerfile
f9e6802 verified
raw
history blame
115 Bytes
FROM node:20
COPY . .
RUN npm i --omit=dev --no-package-lock
USER node
CMD ["node","./src/index.js"]
CMD ["wait"]