Skip to content

Commit b18188d

Browse files
committed
Add build-base to build stage of docker image
ruamel.yaml depends on ruamel.yaml.clib, which requires compilation on alpine. It did not seem to require the packages in build-base before, but it does now.
1 parent 73ab48a commit b18188d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG ALPINE_VERSION=3.12.0
22
FROM alpine:${ALPINE_VERSION}
33

4-
RUN apk add --no-cache git python3 python3-dev py-pip
4+
RUN apk add --no-cache git python3 python3-dev py-pip build-base
55

66
# build wheels in first image
77
ADD . /tmp/src

0 commit comments

Comments
 (0)