From d87a6525bdb5c6baa67c693d057b8fae252e2737 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sat, 5 Jun 2021 21:15:39 +0530 Subject: fixed --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 30692ed..c0e2103 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,10 +10,10 @@ WORKDIR /saas-in-a-flask COPY simple-requirements.txt api.py ./ RUN apt-get update \ - && apt-get install -y --no-install-recommends gcc openssl-dev libffi-dev \ + && apt-get install -y --no-install-recommends gcc libssl-dev libffi-dev \ && rm -rf /var/lib/apt/lists/* \ && pip install -r simple-requirements.txt \ - && apt-get purge -y --auto-remove gcc openssl-dev libffi-dev + && apt-get purge -y --auto-remove gcc libssl-dev libffi-dev COPY ./app ./app -- cgit v1.2.3