We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc9781d + 50309d9 commit dc0b3f0Copy full SHA for dc0b3f0
Dockerfile
@@ -3,7 +3,8 @@ FROM python:3-alpine
3
WORKDIR /usr/src/mha
4
5
COPY requirements.txt ./
6
-RUN pip install --no-cache-dir -r requirements.txt
+RUN apk add --no-cache gcc musl-dev && \
7
+ pip install --no-cache-dir -r requirements.txt
8
9
COPY mha/ .
10
0 commit comments