Skip to content

Commit

Permalink
Merge pull request #277 from CanDIG/daisieh/default-python
Browse files Browse the repository at this point in the history
DIG-1881: add default value for VENV_PYTHON
  • Loading branch information
daisieh authored Jan 3, 2025
2 parents 68c239d + e6f352f commit 23b1db9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG venv_python
ARG venv_python=3.12
FROM python:${venv_python}

LABEL Maintainer="CanDIG Team"
Expand All @@ -19,7 +19,7 @@ WORKDIR /app
COPY ./requirements /app/requirements

# Conditionally install dependencies based on the environment
ARG debug_mode
ARG debug_mode
RUN if [ ${debug_mode} = 1 ]; then \
pip install --no-cache-dir -r requirements/dev.txt; \
else \
Expand Down

0 comments on commit 23b1db9

Please sign in to comment.