Files
temp-history-api/Dockerfile
AzenKain 9fc476394f
All checks were successful
Build and Release / release (push) Successful in 15s
init
2026-04-20 09:31:27 +07:00

12 lines
132 B
Docker

FROM node:24-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]