From fd619c4740499cc995fa1142f900af1113df666c Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sat, 5 Jun 2021 20:58:36 +0530 Subject: using simple requirements --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a3cc035..ba2aaea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,11 +8,11 @@ EXPOSE 5000 WORKDIR /saas-in-a-flask -COPY requirements.txt api.py ./ +COPY simple-requirements.txt api.py ./ RUN apt-get update \ && apt-get install -y --no-install-recommends gcc \ && rm -rf /var/lib/apt/lists/* \ - && pip install -r requirements.txt \ + && pip install -r simple-requirements.txt \ && apt-get purge -y --auto-remove gcc COPY ./app ./app -- cgit v1.2.3