FROM nginx:alpine

LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"

# If you're in China, or you need to change sources, will be set CHANGE_SOURCE to true in .env.

ARG CHANGE_SOURCE=true
RUN if [ ${CHANGE_SOURCE} = true ]; then \
    # Change application source from dl-cdn.alpinelinux.org to aliyun source
    sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories \
;fi

RUN apk update \
    && apk upgrade \
    && apk add --no-cache openssl \
    && apk add --no-cache bash \
    && adduser -D -H -u 1000 -s /bin/bash www

# Set upstream conf and remove the default conf
RUN rm /etc/nginx/conf.d/default.conf

RUN mkdir /etc/nginx/upstreams && mkdir /etc/nginx/res

COPY ./nginx.conf /etc/nginx/
COPY ./upstreams/* /etc/nginx/upstreams/
COPY ./res/* /etc/nginx/res/
COPY ./ssl/* /etc/nginx/ssl/
COPY ./sites_online/* /etc/nginx/sites-available/

ADD ./startup.sh /opt/startup.sh
RUN sed -i 's/\r//g' /opt/startup.sh
CMD ["/bin/bash", "/opt/startup.sh"]

EXPOSE 80 443