Skip to content

Commit

Permalink
Add build-base to build stage of docker image
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
yuvipanda committed Jun 29, 2021
1 parent 73ab48a commit b18188d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG ALPINE_VERSION=3.12.0
FROM alpine:${ALPINE_VERSION}

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

# build wheels in first image
ADD . /tmp/src
Expand Down

0 comments on commit b18188d

Please sign in to comment.