shiro-calculator/Dockerfile
koneko 3c29f98027
All checks were successful
Deploy bot / build-and-deploy (push) Successful in 14s
commit
2025-04-29 12:22:45 +02:00

16 lines
158 B
Docker

ARG NODE_VERSION=18.0.0
FROM node:${NODE_VERSION}-alpine
WORKDIR /usr/src/app
COPY package.json .
RUN npm install
USER node
COPY . .
CMD node index.js