This repository has been archived on 2025-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
shiro-calculator/Dockerfile
2025-07-14 00:58:30 +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