summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gomf-modpanel/Dockerfile2
-rw-r--r--gomf/Dockerfile2
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