Add files

This commit is contained in:
aherman-san
2026-03-07 09:31:17 +01:00
parent bc1903a77c
commit 41788732fe
4 changed files with 656 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
# Używamy ultra-lekkiego obrazu Nginx
FROM nginx:alpine
# Kopiujemy wszystkie pliki z obecnego folderu do folderu serwowania w Nginx
COPY . /usr/share/nginx/html
# Informujemy, że kontener działa na porcie 80
EXPOSE 80