10 lines
395 B
Docker
10 lines
395 B
Docker
|
|
# Lightweight, non-root nginx serving the static site.
|
||
|
|
# Runs as user "nginx" and listens on 8080, ready to sit behind an
|
||
|
|
# external reverse proxy that terminates TLS and forwards requests.
|
||
|
|
FROM nginxinc/nginx-unprivileged:1.27-alpine-slim
|
||
|
|
|
||
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
||
|
|
COPY --chown=nginx:nginx index.html styles.css script.js messages.js /usr/share/nginx/html/
|
||
|
|
|
||
|
|
EXPOSE 8080
|