Create Dockerfile

This commit is contained in:
henryclw 2022-04-23 17:19:43 -07:00
parent 3a8cc2d4d5
commit 4f7ae05357

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM node:lts-alpine
RUN apk update
WORKDIR /app
COPY . ./
RUN yarn
RUN yarn build
EXPOSE 5000
ENTRYPOINT ["yarn", "start"]