summaryrefslogtreecommitdiffstats
path: root/proxy/Dockerfile
blob: ce560230d6907f246326672f5977ab5e56aa8d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM nginxinc/nginx-unprivileged:latest
LABEL maintainer="jdlugosz963@gmail.com"

COPY ./default.conf /etc/nginx/conf.d/default.conf

USER root

RUN mkdir -p /vol/static
RUN chmod 755 /vol/static

USER nginx