msg-mowas/Dockerfile
cheetah c5ee61ff45
All checks were successful
build / build (push) Successful in 28s
added ci/cd
2025-04-05 13:43:13 +02:00

17 lines
No EOL
193 B
Docker

ARG NODE_VERSION=23.0.0
FROM node:${NODE_VERSION}-alpine
ENV NODE_ENV production
WORKDIR /usr/src/app
COPY package.json .
RUN npm install
COPY . .
USER node
EXPOSE 3090
CMD node index.js