From 66c2d942162aa41695f1b7114e1dec1f0aa9a853 Mon Sep 17 00:00:00 2001 From: Mihael Janjic Date: Thu, 25 Jun 2026 11:54:15 +0200 Subject: [PATCH] fix Dockerfile3 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e64e762..92aa547 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.12-slim WORKDIR /app COPY requirements.txt . -RUN pop install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt COPY app/ ./app/