run dev env for site in docker

This commit is contained in:
Paul Mineev
2022-07-25 13:29:33 -05:00
committed by Umputun
parent 922e779118
commit acc56ad42b
3 changed files with 14 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:16-alpine as build
WORKDIR /site
COPY ./ /site
RUN yarn --frozen-lockfile
CMD yarn start