Files
docker-sigal/Dockerfile

20 lines
313 B
Docker
Raw Normal View History

2016-08-29 15:51:09 +02:00
FROM nginx:stable
VOLUME /pictures
WORKDIR /opt
RUN apt-get update && apt-get install -y \
python-dev \
python-pip \
zlib1g-dev \
libjpeg-dev \
libfreetype6-dev \
&& rm -rf /var/lib/apt/lists/*
RUN pip install sigal
COPY run.sh sigal.conf.py auth.conf auth.htpasswd ./
CMD ["./run.sh"]