Moe-counter/Dockerfile

12 lines
91 B
Docker

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