m
File size: 311 Bytes
43c7c2e
 
 
 
fcc1125
08c7743
e7678d2
7fcc1ec
 
11badcc
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM nginxinc/nginx-unprivileged:stable-alpine
# Install nginx and give permissions to 'pn'
# See https://www.rockyourcode.com/run-docker-nginx-as-non-root-user/

ENV HOME=/usr/share/nginx/html

WORKDIR $HOME

COPY nginx.conf /etc/nginx/conf.d/
COPY templates $HOME/templates

RUN cd /usr/share/nginx/html && ls