init - PoC works

This commit is contained in:
Caffeine Fueled 2026-03-14 10:10:25 +01:00
commit 6209600037
Signed by: cf7
GPG key ID: CA295D643074C68C
5 changed files with 483 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
# nginxinc/nginx-unprivileged runs as uid 101 on port 8080 — no root needed
FROM docker.io/nginxinc/nginx-unprivileged:alpine
# Copy app files
COPY --chown=101:101 index.html app.js /usr/share/nginx/html/
COPY --chown=101:101 nginx-container.conf /etc/nginx/conf.d/default.conf
EXPOSE 8080