From 2d18497b1fbe50b6a2a0a8f40a6c203a6faeb6dc Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Mon, 24 Feb 2020 19:04:12 +0300 Subject: Update dockerfile, remove ./rr -v as always failing, update go version to 1.13 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4ea56dc3..4a355831 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Image page: -FROM golang:1.12-alpine as builder +FROM golang:1.13-alpine as builder COPY . /src @@ -9,7 +9,6 @@ RUN set -x \ && apk add --no-cache bash git \ && go version \ && bash ./build.sh \ - && ./rr -v \ && test -f ./.rr.yaml FROM alpine:latest -- cgit v1.2.3 From c0f751d2af77624d7a54afeca3a1fb7829abc367 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Mon, 24 Feb 2020 19:08:25 +0300 Subject: Remove 'try to execute' step --- .github/workflows/ci-build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index cf63195c..b0977521 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -121,6 +121,3 @@ jobs: - name: Build image run: docker build -t rr:local -f Dockerfile . - - - name: Try to execute - run: docker run --rm rr:local -v -- cgit v1.2.3