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.
pull/1051/head
YuviPanda 2021-06-29 15:29:32 +05:30
rodzic 73ab48a42d
commit b18188d5ed
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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