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