Skip to content

Commit dc0b3f0

Browse files
authored
Merge pull request cyberdefenders#17 from StayPirate/build-dep
Adding missing building dependencies
2 parents bc9781d + 50309d9 commit dc0b3f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ FROM python:3-alpine
33
WORKDIR /usr/src/mha
44

55
COPY requirements.txt ./
6-
RUN pip install --no-cache-dir -r requirements.txt
6+
RUN apk add --no-cache gcc musl-dev && \
7+
pip install --no-cache-dir -r requirements.txt
78

89
COPY mha/ .
910

0 commit comments

Comments
 (0)