From 6c80b55979154c3f4125cd5b52384d56bbf3f52b Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Sun, 1 Feb 2026 11:54:19 +0000 Subject: [PATCH] docker: Remove unnecessary "go get" command We no longer need to do "go get" before "go install" in modern Go versions, so this patches removes that (now) unnecessary command. --- docker/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 98dd135..a3422f7 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -11,8 +11,7 @@ FROM golang:latest AS build WORKDIR /go/src/blitiri.com.ar/go/chasquid COPY . . -RUN go get -d ./... && \ - go install ./... +RUN go install ./... # Create the image. # Use a specific Debian stable version, because the move between