From be43043acc980ad6077c3fde6b9a690b337a647d Mon Sep 17 00:00:00 2001 From: clsr Date: Thu, 4 Mar 2021 18:27:22 +0100 Subject: Update dockerfiles for Go 1.16 --- gomf-modpanel/Dockerfile | 2 +- gomf/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gomf-modpanel/Dockerfile b/gomf-modpanel/Dockerfile index 8601629..412f093 100644 --- a/gomf-modpanel/Dockerfile +++ b/gomf-modpanel/Dockerfile @@ -4,7 +4,7 @@ RUN set -x \ && apk add --no-cache git build-base file-dev \ && git clone https://git.clsr.net/gomf/gomf-modpanel-web /gomf-modpanel-web \ && rm -rf /gomf-modpanel-web/.git \ - && go get -v git.clsr.net/gomf/gomf-modpanel + && go install git.clsr.net/gomf/gomf-modpanel@latest FROM alpine diff --git a/gomf/Dockerfile b/gomf/Dockerfile index 4775fea..4ce5e46 100644 --- a/gomf/Dockerfile +++ b/gomf/Dockerfile @@ -4,7 +4,7 @@ RUN set -x \ && apk add --no-cache git build-base file-dev \ && git clone https://git.clsr.net/gomf/gomf-web /gomf-web \ && rm -rf /gomf-web/.git \ - && go get -v git.clsr.net/gomf/gomf + && go install git.clsr.net/gomf/gomf@latest FROM alpine -- cgit