From b18188d5ed1ec3853b17cabacac51f69d0883978 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Tue, 29 Jun 2021 15:29:32 +0530 Subject: [PATCH] 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 818bf8653..a1151376f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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