add Dockerfile

This commit is contained in:
Dawid Wysokiński 2020-12-23 17:43:22 +01:00
parent bb7c9040de
commit 42c46dec1c

19
Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM node:14.1.0-alpine as build-deps
#Stage 1
WORKDIR /usr/src/app
COPY package.json yarn.lock ./
RUN yarn
COPY . ./
ENV NODE_ENV=production
RUN yarn build
#Stage 2
FROM nginx:1.17.5-alpine
COPY --from=build-deps /usr/src/app/build /var/www
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]