From e6f352f11f19498b8add2c4fb838007d11a2b102 Mon Sep 17 00:00:00 2001 From: Daisie Huang Date: Tue, 31 Dec 2024 11:29:29 -0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 769e6e05e..a6d139527 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG venv_python +ARG venv_python=3.12 FROM python:${venv_python} LABEL Maintainer="CanDIG Team" @@ -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 \