diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-05 21:21:07 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-05 21:21:07 +0530 |
commit | 9c9c3146865eb55fb7b89d7d7a28ed1e831b4bfa (patch) | |
tree | c152705475f6b9da8595b97d179c3d84a0b38044 /Dockerfile | |
parent | d87a6525bdb5c6baa67c693d057b8fae252e2737 (diff) |
fixed
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 libssl-dev libffi-dev \ + && apt-get install -y --no-install-recommends gcc libssl-dev libffi-dev python3-dev \ && rm -rf /var/lib/apt/lists/* \ && pip install -r simple-requirements.txt \ - && apt-get purge -y --auto-remove gcc libssl-dev libffi-dev + && apt-get purge -y --auto-remove gcc libssl-dev libffi-dev python3-dev COPY ./app ./app |