7 lines
204 B
Docker
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
|