Made the website into a docker container

This commit is contained in:
Bo⋆˚✿˖° 2024-11-12 12:15:32 +01:00
parent bc4efd1217
commit 5b5dc2a3b4
Signed by: FreedTapestry21
GPG key ID: 0664F1BDE43BA236
8 changed files with 35 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM ubuntu:latest
RUN apt update && apt install nginx python3 -y
RUN rm -rf /etc/nginx/sites-enabled/default
ADD nginx/ /etc/nginx/
ADD www/ /var/html/www/
ENTRYPOINT ["nginx"]