Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
daisieh committed Dec 31, 2024
1 parent ac1b6de commit e6f352f
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 e6f352f

Please sign in to comment.