From ada61d977de7cb6340da14de85da1cde1e6adaab Mon Sep 17 00:00:00 2001 From: "avinash.b" Date: Thu, 11 Jan 2024 06:00:13 +0000 Subject: [PATCH] updated requirements.txt filename in docker --- Business_cards/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Business_cards/Dockerfile b/Business_cards/Dockerfile index b25628e..a6f0fd0 100644 --- a/Business_cards/Dockerfile +++ b/Business_cards/Dockerfile @@ -8,7 +8,8 @@ WORKDIR /opt/bussinesscards COPY . . # Install any needed packages specified in requirements.txt -RUN pip install --no-cache-dir -r requirement.txt +RUN apt update && apt install -y libgl1-mesa-glx && apt --fix-broken install && \ + pip install --no-cache-dir -r requirement.txt # Make port 80 available to the world outside this container EXPOSE 1112