21 lines
415 B
Docker
21 lines
415 B
Docker
FROM nginx:1.11
|
|
|
|
RUN mkdir /etc/nginx/sites-available && rm /etc/nginx/conf.d/default.conf
|
|
ADD nginx.conf /etc/nginx/
|
|
|
|
COPY scripts /root/scripts/
|
|
COPY certs /etc/ssl/
|
|
|
|
COPY sites /etc/nginx/templates
|
|
|
|
ARG SERVER_PROXY_PORT=3000
|
|
ARG WEB_SSL=false
|
|
ARG SELF_SIGNED=false
|
|
|
|
ENV SERVER_PROXY_PORT=$SERVER_PROXY_PORT
|
|
ENV WEB_SSL=$WEB_SSL
|
|
ENV SELF_SIGNED=$SELF_SIGNED
|
|
|
|
RUN /bin/bash /root/scripts/build-nginx.sh
|
|
|
|
CMD nginx |