first commit

This commit is contained in:
2025-12-07 12:37:01 +01:00
parent 63180108ea
commit 43ad33c4e5
4 changed files with 180 additions and 0 deletions

11
dockerfile Normal file
View File

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