aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2021-06-05 20:58:36 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2021-06-05 20:58:36 +0530
commitfd619c4740499cc995fa1142f900af1113df666c (patch)
tree0dd14d60b558fb3d001638ab626cd4b16bc6f8e1
parent53c2344f74cdbb9bcd8f4fe734d4888fabaf4bb1 (diff)
using simple requirements
-rw-r--r--Dockerfile4
1 files 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