From 086cd0d02bdc259191a60a216a198e9a7475991a Mon Sep 17 00:00:00 2001 From: Dominika Liberda Date: Sun, 10 Apr 2022 12:49:17 +0200 Subject: [PATCH] * further changes in pipeline --- Dockerfile | 4 +++- run.sh | 0 2 files changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 run.sh diff --git a/Dockerfile b/Dockerfile index fa6ce4b..e8f68db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM alpine:edge RUN echo -e "http://alpine.sakamoto.pl/alpine/edge/main\nhttp://alpine.sakamoto.pl/alpine/edge/community\nhttp://alpine.sakamoto.pl/alpine/edge/testing" > /etc/apk/repositories \ - && apk update && apk add micro abuild atools sudo && adduser -G abuild -D -u 1001 domi && echo "domi ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers + && apk update && apk add micro abuild atools alpine-sdk sudo \ + && adduser -G abuild -D -u 1001 domi \ + && echo "domi ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers VOLUME /aports diff --git a/run.sh b/run.sh old mode 100644 new mode 100755