From cd6c86243afd22b3097fa05509c4638d17cd1065 Mon Sep 17 00:00:00 2001 From: muskit <15199219+muskit@users.noreply.github.com> Date: Thu, 1 Feb 2024 15:16:33 -0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 88591d4..3720020 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,7 @@ WORKDIR /app # Install pip dependencies COPY requirements.txt . -RUN python3 -m venv .venv && source .venv/bin/activate -RUN pip3 install -r requirements.txt +RUN python3 -m venv .venv && source .venv/bin/activate && pip3 install -r requirements.txt # Copy source code COPY . .