add Dockerfile

This commit is contained in:
2021-02-17 12:56:05 +01:00
parent 9ec370a027
commit 21261bce7e
3 changed files with 15 additions and 1 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:14
EXPOSE 3333
WORKDIR /usr/src/artsite
COPY package.json package.json
RUN yarn build
COPY . .
CMD ["yarn", "start"]