Initial commit

This commit is contained in:
garronej
2022-09-06 19:22:23 +02:00
parent 22532b67ea
commit 518d381447
76 changed files with 11799 additions and 2 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
# build environment
FROM node:14-alpine as build
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build
# production environment
FROM nginx:stable-alpine
COPY --from=build /app/build /usr/share/nginx/html
COPY --from=build /app/nginx.conf /etc/nginx/conf.d/default.conf
CMD nginx -g 'daemon off;'