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
koneko c6c350ce0a
All checks were successful
Deploy bot / build-and-deploy (push) Successful in 22s
update node
2025-08-09 00:41:37 +02:00

16 lines
158 B
Docker

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