Added Dockerfile

This commit is contained in:
BloxerHD 2025-10-16 22:09:58 +01:00
commit 287263d00b
2 changed files with 39 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
COPY . .
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]