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