Update docker image versions

This commit is contained in:
Grégoire Delattre 2021-02-03 16:32:20 +01:00
parent 4acd7f0c13
commit 5cd150d589
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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