summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index f172f58b..c857515f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,12 +1,12 @@
-# Image page: <https://hub.docker.com/_/golang>
-FROM golang:1.13-alpine as builder
+FROM golang:1.14.3 as builder
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