first commit

This commit is contained in:
2025-12-08 16:54:01 +01:00
commit 66e2a5d403
5 changed files with 598 additions and 0 deletions

11
dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM nginx:alpine
LABEL authors="yanis"
RUN rm -rf /usr/share/nginx/html/*
COPY . /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]