docker-ckan/nginx/Dockerfile

10 lines
188 B
Docker
Raw Normal View History

2022-07-11 13:32:17 +02:00
FROM nginx:stable-alpine
2020-09-17 11:42:27 +02:00
ENV NGINX_DIR=/etc/nginx
2022-07-11 13:32:17 +02:00
COPY setup/index.html /usr/share/nginx/html/index.html
2022-07-13 18:36:14 +02:00
COPY setup/*.conf ${NGINX_DIR}/conf.d/
2020-09-17 11:42:27 +02:00
2022-07-14 11:40:02 +02:00
#RUN mkdir -p /tmp/nginx/cache
2022-07-11 13:32:17 +02:00
EXPOSE 81