Compare commits

..

2 commits

3 changed files with 78 additions and 0 deletions

14
.dockerignore Normal file
View file

@ -0,0 +1,14 @@
# docker files
Dockerfile
docker-compose.yml
.env
# git files
branches
config
descriptiom
HEAD
hooks
info
objects
refs

44
Dockerfile Normal file
View file

@ -0,0 +1,44 @@
# BUILD STAGE
FROM node:22.1.0-alpine3.19 as build-stage
WORKDIR /app
# add files that describe which dependencies are required
COPY package*.json ./
# install dependencies required to build the web application
RUN npm install
# add resources required to build the web application
COPY . .
# build the web application
RUN npm run build
# PRODUCTION STAGE
FROM nginx:1.26.0-alpine3.19 as production-stage
# use custom error code websites instead
RUN rm -f /usr/share/nginx/html/50x.html
# update default.conf nginx file with necessary try_files statement
RUN rm -f /etc/nginx/conf.d/default.conf
COPY --chown=nginx:nginx ./default.conf /etc/nginx/conf.d/default.conf
# enable the nginx user to be able to launch the web application, so root is not required
RUN touch /var/run/nginx.pid && \
chown -R nginx:nginx /var/cache/nginx /var/run/nginx.pid
USER nginx
COPY --chown=nginx:nginx ./default.conf /etc/nginx/conf.d/default.conf
# add the previously built web application
COPY --chown=www-data:www-data --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
# check every minute whether the website is still locally reachable; if not, the docker process displays "unhealthy"
HEALTHCHECK --interval=1m CMD wget --no-verbose --tries=1 http://localhost:80 -q -O /dev/null || exit 1
# runs nginx in the foreground which means the docker container only runs as long as nginx is running (good practice)
CMD ["nginx", "-g", "daemon off;"]

20
docker-compose.yml Normal file
View file

@ -0,0 +1,20 @@
# openvisor-website/docker-compose.yml
# https://git.openvisor.ch/OpenVisor/OpenVisor-Website
networks:
openvisorwebsite-network:
name: openvisorwebsite-network
driver: bridge
external: false
attachable: false
services:
openvisorwebsite-app:
container_name: openvisorwebsite-app
build: .
# ensure that web application is not run by root
user: nginx:nginx
ports:
- 1443:80
networks:
- openvisorwebsite-network