From a984efccabad5c5b9265a5455e3ca8614cc61a35 Mon Sep 17 00:00:00 2001 From: Malik Benkirane Date: Wed, 24 Jun 2020 12:51:51 +0100 Subject: [PATCH] Fix missing patch in alpine to build tinycore container image. Add alpine patch package to src/Dockerfile to fix build of tinycore 11.0 x86 and x86_64 container images. --- 11.0/x86/src/Dockerfile | 2 +- 11.0/x86_64/src/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/11.0/x86/src/Dockerfile b/11.0/x86/src/Dockerfile index 972f878..2174523 100644 --- a/11.0/x86/src/Dockerfile +++ b/11.0/x86/src/Dockerfile @@ -1,7 +1,7 @@ FROM alpine ADD tce-load.patch /tmp/ -RUN apk add --no-cache curl \ +RUN apk add --no-cache curl patch \ && curl -SLO http://www.tinycorelinux.net/11.x/x86/release/distribution_files/rootfs.gz \ && mkdir rootfs \ && cd rootfs \ diff --git a/11.0/x86_64/src/Dockerfile b/11.0/x86_64/src/Dockerfile index 658398e..89e4237 100644 --- a/11.0/x86_64/src/Dockerfile +++ b/11.0/x86_64/src/Dockerfile @@ -1,7 +1,7 @@ FROM alpine ADD tce-load.patch /tmp/ -RUN apk add --no-cache curl \ +RUN apk add --no-cache curl patch \ && curl -SLO http://www.tinycorelinux.net/11.x/x86_64/release/distribution_files/rootfs64.gz \ && mkdir rootfs64 \ && cd rootfs64 \