Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Nov 1, 2024
1 parent 9492de3 commit e4476bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,5 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
7 changes: 3 additions & 4 deletions utils/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ RUN pyenv install 3.10.15 && \
which python && \
which pip && \
python --version && \
pip --version
pip --version && \
pip install -U pipenv --break-system-packages
# Some cleanup
RUN apt-get clean autoclean && \
apt-get autoremove --yes && \
Expand Down Expand Up @@ -128,11 +129,9 @@ COPY backend/Pipfile backend/Pipfile.lock ./

# Install Python dependencies via pipenv.
RUN PIPENV_VENV_IN_PROJECT=1 pipenv install \
--python=/usr/local/bin/python \
--python=/opt/pyenv/shims/python \
--categories=packages,prod-packages,ldap-packages \
--deploy
# Override installed Celery version (necessary until sodar-core v1)
RUN pipenv run pip install -U celery==5.3.5


# ---------------------------------------------------------------------------
Expand Down

0 comments on commit e4476bc

Please sign in to comment.