Skip to content
Snippets Groups Projects
Dockerfile 339 B
Newer Older
Niaz's avatar
Niaz committed
FROM reallibrephotos/librephotos-dependencies:dev
Matteo Parrucci's avatar
Matteo Parrucci committed
ARG DEBUG
RUN git clone --depth 1 https://github.com/LibrePhotos/librephotos .
RUN pip install -r requirements.txt
Matteo Parrucci's avatar
Matteo Parrucci committed
RUN if [ "$DEBUG" = 1 ] ; then pip install -r requirements.dev.txt ;  fi
COPY entrypoint.sh /entrypoint.sh
CMD ["/entrypoint.sh"]