dockerfile

master
Tudor Stanciu 2020-04-12 04:09:41 +03:00
parent 11e5c9a2a6
commit 8c0127d1b4
2 changed files with 22 additions and 0 deletions

6
.dockerignore Normal file
View File

@ -0,0 +1,6 @@
.git
node_modules
build
__mocks__
.vscode
helm

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
# build environment
FROM node:12 as builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . ./
RUN npm run build
# production environment
FROM node:12
COPY --from=builder /app/build ./build
RUN npm install
EXPOSE 80
CMD ["sh","-c","node serve -s build -p 80"]