1
0
mirror of https://github.com/journey-ad/Moe-Counter.git synced 2025-02-22 05:19:36 +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"]