Skip to content

Commit fa5d2dc

Browse files
committed
Fix Dockerfile
1 parent fc9d798 commit fa5d2dc

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

Dockerfile

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,17 @@ RUN apk update; \
77
python3 \
88
python3-dev \
99
py-pip \
10-
bash; \
11-
pip3 install -r requirements.txt; \
12-
apk del python3-dev; \
13-
rm -rf /var/cache/apk/* ; \
10+
gcc \
11+
musl-dev \
12+
bash;
13+
14+
RUN pip3 install -r requirements.txt;
15+
16+
RUN apk del python3-dev \
17+
gcc \
18+
musl-dev;
19+
20+
RUN rm -rf /var/cache/apk/* ; \
1421
rm -rf Atomic_Threat_Coverage;
15-
CMD /app/docker-entrypoint.sh
22+
23+
CMD /app/docker-entrypoint.sh

0 commit comments

Comments
 (0)