use fixed golang version in Dockerfiles

This commit is contained in:
Dawid Wysokiński 2021-11-14 10:30:05 +01:00
parent ad67bce5a6
commit 074c6fb285
Signed by: Kichiyaki
GPG Key ID: EF14026D247EB867
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM golang:alpine as builder
FROM golang:1.17.2-alpine as builder
# Set the Current Working Directory inside the container
WORKDIR /app

View File

@ -1,4 +1,4 @@
FROM golang:alpine as builder
FROM golang:1.17.2-alpine as builder
# Set the Current Working Directory inside the container
WORKDIR /app