Skip to content
Snippets Groups Projects
Commit 32a591b0 authored by derneuere's avatar derneuere
Browse files

Fix for 3.11

parent 77104f00
No related branches found
No related tags found
No related merge requests found
...@@ -5,9 +5,9 @@ WORKDIR /code ...@@ -5,9 +5,9 @@ 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 --break-system-packages --no-cache-dir -r requirements.txt RUN pip install --break-system-packages --no-cache-dir -r requirements.txt
RUN if [ "$DEBUG" = 1 ] ; then \ RUN if [ "$DEBUG" = 1 ] ; then \
pip install setuptools==57.5.0; \ pip install --break-system-packages setuptools==57.5.0; \
pip install -r requirements.dev.txt; \ pip install --break-system-packages -r requirements.dev.txt; \
fi 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