Skip to content
Snippets Groups Projects
Unverified Commit 0a89857b authored by Niaz Faridani-Rad's avatar Niaz Faridani-Rad Committed by GitHub
Browse files

Merge pull request #70 from sickelap/fix_dev_build

fix setuptools version for use_2to3
parents 858a969d cd7b191d
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,10 @@ ARG DEBUG ...@@ -4,7 +4,10 @@ ARG DEBUG
WORKDIR /code WORKDIR /code
RUN git clone --depth 1 https://github.com/LibrePhotos/librephotos . RUN git clone --depth 1 https://github.com/LibrePhotos/librephotos .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
RUN if [ "$DEBUG" = 1 ] ; then pip install -r requirements.dev.txt ; fi RUN if [ "$DEBUG" = 1 ] ; then \
pip install setuptools==57.5.0; \
pip install -r requirements.dev.txt; \
fi
EXPOSE 8001 EXPOSE 8001
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment