diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2021-08-18 14:13:38 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2021-08-18 14:13:38 +0100 |
commit | cf42ae60646343da28e55650383745d09298b0b9 (patch) | |
tree | e1041673f5195b15028fd9ee7a1ec00fe74f3721 /build | |
parent | fe5050c0a5b1ef3dddde294d64ab24d8ba26e53f (diff) |
Build Docker images using Go 1.17
Diffstat (limited to 'build')
-rw-r--r-- | build/docker/Dockerfile.monolith | 2 | ||||
-rw-r--r-- | build/docker/Dockerfile.polylith | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build/docker/Dockerfile.monolith b/build/docker/Dockerfile.monolith index e59fd087..7fd25674 100644 --- a/build/docker/Dockerfile.monolith +++ b/build/docker/Dockerfile.monolith @@ -1,4 +1,4 @@ -FROM docker.io/golang:1.15-alpine AS base +FROM docker.io/golang:1.17-alpine AS base RUN apk --update --no-cache add bash build-base diff --git a/build/docker/Dockerfile.polylith b/build/docker/Dockerfile.polylith index 5cb53bbd..819926c4 100644 --- a/build/docker/Dockerfile.polylith +++ b/build/docker/Dockerfile.polylith @@ -1,4 +1,4 @@ -FROM docker.io/golang:1.15-alpine AS base +FROM docker.io/golang:1.17-alpine AS base RUN apk --update --no-cache add bash build-base |