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

12 lines
91 B
Docker
Raw Permalink Normal View History

2023-04-04 04:10:55 +02:00
FROM node:14
WORKDIR /app
COPY . .
RUN yarn install
EXPOSE 3000
CMD ["yarn", "start"]