Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -9,7 +9,8 @@ COPY ./requirements.txt /usr/src/app
|
|
9 |
|
10 |
# Build Dependencies
|
11 |
RUN apk --no-cache add gcc musl-dev libffi-dev openssl-dev libxml2-dev libxslt-dev file llvm-dev make g++ cargo rust sudo
|
12 |
-
RUN sudo apk add
|
|
|
13 |
|
14 |
# Python Dependencies
|
15 |
RUN pip install --no-cache-dir --prefix=/install wheel cryptography gunicorn pymysql
|
|
|
9 |
|
10 |
# Build Dependencies
|
11 |
RUN apk --no-cache add gcc musl-dev libffi-dev openssl-dev libxml2-dev libxslt-dev file llvm-dev make g++ cargo rust sudo
|
12 |
+
RUN sudo apk add python3-dev
|
13 |
+
RUN apt install build-essential
|
14 |
|
15 |
# Python Dependencies
|
16 |
RUN pip install --no-cache-dir --prefix=/install wheel cryptography gunicorn pymysql
|