docker file og rigtige stier i html

This commit is contained in:
2026-04-11 23:22:18 +02:00
parent f69032c929
commit d60c759e33
2 changed files with 14 additions and 2 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM nginx:alpine
# Fjern default nginx side
RUN rm -rf /usr/share/nginx/html/*
# Kopiér dine filer ind
COPY . /usr/share/nginx/html
# Expose port
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]