From 074c6fb285b7714ae6033df382231fa807ea92ea Mon Sep 17 00:00:00 2001 From: Kichiyaki Date: Sun, 14 Nov 2021 10:30:05 +0100 Subject: [PATCH] use fixed golang version in Dockerfiles --- build/cron/Dockerfile | 2 +- build/dataupdater/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/cron/Dockerfile b/build/cron/Dockerfile index 83c6982..9ef2e68 100644 --- a/build/cron/Dockerfile +++ b/build/cron/Dockerfile @@ -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 diff --git a/build/dataupdater/Dockerfile b/build/dataupdater/Dockerfile index c53e850..d20910f 100644 --- a/build/dataupdater/Dockerfile +++ b/build/dataupdater/Dockerfile @@ -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