This commit is contained in:
2026-02-26 09:11:59 +01:00
parent 7862273342
commit 66e8eb0cee
2 changed files with 27 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
COPY ["Dekra WebSite", "/usr/share/nginx/html"]
COPY vhost.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]