diff --git a/backend/Dockerfile b/backend/Dockerfile index 43088e5..4ee2724 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install -r requirements.txt COPY . . diff --git a/tg_bot/Dockerfile b/tg_bot/Dockerfile index 4d4f728..1560652 100644 --- a/tg_bot/Dockerfile +++ b/tg_bot/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install -r requirements.txt COPY . ./tg_bot/