diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-05 20:58:36 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-05 20:58:36 +0530 |
commit | fd619c4740499cc995fa1142f900af1113df666c (patch) | |
tree | 0dd14d60b558fb3d001638ab626cd4b16bc6f8e1 /Dockerfile | |
parent | 53c2344f74cdbb9bcd8f4fe734d4888fabaf4bb1 (diff) |
using simple requirements
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |