From ccd3042b205033c7cb7c907fc2ffa680baa0677b Mon Sep 17 00:00:00 2001 From: ebosas Date: Mon, 11 Oct 2021 13:32:47 +0300 Subject: [PATCH] Bump up go version to 1.17 --- backend.Dockerfile | 2 +- cache.Dockerfile | 2 +- database.Dockerfile | 2 +- server.Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend.Dockerfile b/backend.Dockerfile index 33b238d..a326d3e 100644 --- a/backend.Dockerfile +++ b/backend.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16-alpine AS backend +FROM golang:1.17-alpine AS backend WORKDIR /go/src/app COPY go.* . COPY internal ./internal diff --git a/cache.Dockerfile b/cache.Dockerfile index 4ecfcb6..e37a678 100644 --- a/cache.Dockerfile +++ b/cache.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16-alpine AS cache +FROM golang:1.17-alpine AS cache WORKDIR /go/src/app COPY go.* . COPY internal ./internal diff --git a/database.Dockerfile b/database.Dockerfile index f691466..b4dc1a6 100644 --- a/database.Dockerfile +++ b/database.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16-alpine AS database +FROM golang:1.17-alpine AS database WORKDIR /go/src/app COPY go.* . COPY internal ./internal diff --git a/server.Dockerfile b/server.Dockerfile index 7686895..a44a387 100644 --- a/server.Dockerfile +++ b/server.Dockerfile @@ -15,7 +15,7 @@ COPY web/bootstrap . RUN npm run css # Build container for server -FROM golang:1.16-alpine AS server +FROM golang:1.17-alpine AS server WORKDIR /go/src/app COPY go.* . COPY internal ./internal