From 5cd150d589913121912b8082dabcbee6a1f22534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Delattre?= Date: Wed, 3 Feb 2021 16:32:20 +0100 Subject: [PATCH] Update docker image versions --- .drone.yml | 6 +++--- docker/Dockerfile-production | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 47a84a0..aa298c8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,7 @@ name: default steps: - name: prepare-workdir - image: alpine:3.11.3 + image: alpine:3.13.1 commands: - mkdir canapeapp @@ -16,7 +16,7 @@ steps: - npm run-script build - name: backend - image: golang:1.14.0-alpine3.11 + image: golang:1.15.7-alpine3.13 commands: - apk --no-cache add git - GO111MODULE=off go get -tags 'postgres' -u github.com/golang-migrate/migrate/cmd/migrate @@ -24,7 +24,7 @@ steps: - CGO_ENABLED=0 go build -ldflags '-extldflags "-static"' -trimpath -v -o canapeapp/app backend/*.go - name: prepare-docker - image: alpine:3.11.3 + image: alpine:3.13.1 commands: - cp docker/run.sh canapeapp/run.sh - cp migrate canapeapp/migrate diff --git a/docker/Dockerfile-production b/docker/Dockerfile-production index 8e27a88..7ed83da 100644 --- a/docker/Dockerfile-production +++ b/docker/Dockerfile-production @@ -1,4 +1,4 @@ -FROM alpine:3.11.3 +FROM alpine:3.13.1 RUN apk --no-cache add ca-certificates COPY canapeapp /opt/canapeapp