Test/Dockerfile
everydayseries dd14c89725
Some checks failed
CI Pipeline / build (push) Has been cancelled
Initial commit with Gitea Actions setup
2025-02-07 00:20:04 +05:30

7 lines
92 B
Docker

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