aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 7d65c24..ff4125e 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 libssl-dev libffi-dev python3-dev \
+ && apt-get install -y --no-install-recommends gcc libssl-dev libffi-dev python3-dev build-essential \
&& rm -rf /var/lib/apt/lists/* \
&& pip install -r simple-requirements.txt \
- && apt-get purge -y --auto-remove gcc libssl-dev libffi-dev python3-dev
+ && apt-get purge -y --auto-remove gcc libssl-dev libffi-dev python3-dev build-essential
COPY ./app ./app