1
0
mirror of https://github.com/journey-ad/Moe-Counter.git synced 2024-11-23 23:30:56 +01:00
Moe-Counter/Dockerfile
2023-04-04 10:10:55 +08:00

12 lines
91 B
Docker

FROM node:14
WORKDIR /app
COPY . .
RUN yarn install
EXPOSE 3000
CMD ["yarn", "start"]