From 4491e5180aabe704808a3d9ed3837f3c1e555776 Mon Sep 17 00:00:00 2001 From: Lukian Date: Sun, 29 Dec 2024 14:56:32 +0100 Subject: [PATCH] Fixed dockerfiles to add reqiests module with pip --- client/company/Dockerfile | 1 + client/shareholder/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/client/company/Dockerfile b/client/company/Dockerfile index d6d573a..84fc2d3 100644 --- a/client/company/Dockerfile +++ b/client/company/Dockerfile @@ -1,5 +1,6 @@ FROM python:alpine WORKDIR /app COPY . . +RUN pip install requests CMD ["python", "-u", "main.py"] diff --git a/client/shareholder/Dockerfile b/client/shareholder/Dockerfile index d6d573a..84fc2d3 100644 --- a/client/shareholder/Dockerfile +++ b/client/shareholder/Dockerfile @@ -1,5 +1,6 @@ FROM python:alpine WORKDIR /app COPY . . +RUN pip install requests CMD ["python", "-u", "main.py"]