docker-ckan/nginx/Dockerfile

13 lines
314 B
Docker

FROM nginx:stable-alpine
ENV NGINX_DIR=/etc/nginx
ENV NGINX_PORT=80
COPY setup/nginx.conf ${NGINX_DIR}/nginx.conf
COPY setup/index.html /usr/share/nginx/html/index.html
COPY setup/default.conf ${NGINX_DIR}/conf.d/
RUN mkdir -p ${NGINX_DIR}/certs
COPY setup/ckan-local.* ${NGINX_DIR}/certs/
EXPOSE ${NGINX_PORT}