Files
docker-sigal/Dockerfile

16 lines
243 B
Docker
Raw Normal View History

2016-08-29 15:51:09 +02:00
FROM nginx:stable
WORKDIR /opt
RUN apt-get update && apt-get install -y \
2020-09-23 13:19:36 +02:00
python3-pip \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install sigal
2016-08-29 15:51:09 +02:00
COPY run.sh sigal.conf.py auth.conf auth.htpasswd ./
2016-09-14 12:29:26 +02:00
ENV LANG C.UTF-8
2016-08-29 15:51:09 +02:00
CMD ["./run.sh"]