add simple site with container
Build site container / build (push) Canceled after 0s

This commit is contained in:
2026-08-16 03:23:20 +03:00
parent 936d8d4e47
commit 4058b9a596
4 changed files with 283 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM docker.io/nginxinc/nginx-unprivileged:alpine
COPY --chown=101:101 --chmod=644 nginx.conf /etc/nginx/conf.d/default.conf
COPY --chown=101:101 index.html /usr/share/nginx/html/index.html
EXPOSE 8080