1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2026-02-02 21:45:55 +00:00

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.
This commit is contained in:
Alberto Bertogli
2026-02-01 11:54:19 +00:00
parent 45071cba6f
commit 6c80b55979

View File

@@ -11,8 +11,7 @@
FROM golang:latest AS build FROM golang:latest AS build
WORKDIR /go/src/blitiri.com.ar/go/chasquid WORKDIR /go/src/blitiri.com.ar/go/chasquid
COPY . . COPY . .
RUN go get -d ./... && \ RUN go install ./...
go install ./...
# Create the image. # Create the image.
# Use a specific Debian stable version, because the move between # Use a specific Debian stable version, because the move between