Files
docker-sigal/Dockerfile
2020-09-23 13:19:36 +02:00

16 lines
243 B
Docker

FROM nginx:stable
WORKDIR /opt
RUN apt-get update && apt-get install -y \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install sigal
COPY run.sh sigal.conf.py auth.conf auth.htpasswd ./
ENV LANG C.UTF-8
CMD ["./run.sh"]