Files
.profile/site/Dockerfile
T
krosh 4058b9a596
Build site container / build (push) Canceled after 0s
add simple site with container
2026-08-16 03:23:20 +03:00

7 lines
204 B
Docker

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