From c5b4f72251742ae60390a806312b19e35af1733f Mon Sep 17 00:00:00 2001 From: Nulo Date: Tue, 30 Nov 2021 15:39:07 +0000 Subject: [PATCH] Instalar /usr/local/bin en el contenedor --- Containerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containerfile b/Containerfile index 9c53952..24b19b4 100644 --- a/Containerfile +++ b/Containerfile @@ -6,7 +6,9 @@ RUN echo "https://alpine.sutty.nl/alpine/v3.13/sutty" >> "/etc/apk/repositories" wget https://alpine.sutty.nl/alpine/sutty.pub -O "/etc/apk/keys/alpine@sutty.nl-5ea884cd.rsa.pub" COPY packages /root/packages +COPY bin /usr/local/bin +RUN chmod 755 /usr/local/bin/* RUN apk add --no-cache $(cat "/root/packages" | tr "\n" " ") RUN sed -re "s/#(@platforms = )/\1/" -i "/usr/lib/ruby/2.7.0/rubygems.rb" && \ mkdir -m 700 -p "~/.ssh"