diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,7 +5,8 @@ COPY . /src WORKDIR /src RUN set -x \ - && apk add --no-cache bash git \ + && apt-get update -y \ + && apt-get install -y bash git \ && go version \ && bash ./build.sh \ && test -f ./.rr.yaml |