first commit
Some checks failed
Docker Build and Push for Main Branch / docker (push) Has been cancelled

This commit is contained in:
l-nmch
2026-05-11 14:52:46 +02:00
commit c6f5f77d7c
6 changed files with 177 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM nginx:stable-alpine
WORKDIR /usr/share/nginx/html
COPY index.html ./
COPY src ./src
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]