Added docker & nginx config

This commit is contained in:
Jef Roosens 2021-12-28 17:35:40 +01:00
parent a1efeaf6f1
commit e57909b318
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F
7 changed files with 150 additions and 3 deletions

View file

@ -1,3 +1,26 @@
# ======Building the project=====
FROM node:17.2.0 AS builder
WORKDIR /usr/src/app
# Install Node dependencies
COPY package.json yarn.lock ./
RUN yarn install
# Copy over source code & build project
COPY vite.config.ts tsconfig.json index.html ./
COPY src/ ./src
COPY public/ ./public
RUN yarn run build
# =====Packaging inside an Nginx container=====
FROM nginx:1.21.4-alpine
COPY default.conf.template /etc/nginx/templates/default.conf.template
# Copy over the Nginx config files
COPY nginx/nginx.conf /etc/nginx/nginx.conf
COPY nginx/*.conf.template /etc/nginx/templates/
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
# Copy over build artifacts
COPY --from=builder /usr/src/app/dist /usr/share/nginx/html