Test/Dockerfile
everydayseries 23e33ff9c4
Some checks failed
CI Pipeline / build (push) Has been cancelled
Initial commit with Gitea Actions setup
2025-02-07 18:13:16 +05:30

7 lines
92 B
Docker

FROM node:16
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
CMD ["npm", "start"]