mirror of
https://github.com/journey-ad/Moe-Counter.git
synced 2024-11-23 23:30:56 +01:00
12 lines
91 B
Docker
12 lines
91 B
Docker
|
FROM node:14
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN yarn install
|
||
|
|
||
|
EXPOSE 3000
|
||
|
|
||
|
CMD ["yarn", "start"]
|