We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 085e31d commit fb7334eCopy full SHA for fb7334e
Dockerfile
@@ -3,12 +3,14 @@ FROM golang:1.18-alpine
3
ENV GIT_TERMINAL_PROMPT=0
4
RUN apk add --no-cache git
5
6
-RUN go install github.com/mvdan/gofumpt@latest
+# Install gofumpt (latest v0.4.0 to support go1.18)
7
+RUN go install mvdan.cc/gofumpt@v0.4.0
8
RUN go install github.com/01-edu/rc@latest
9
10
WORKDIR /piscine-go
11
RUN go mod init piscine-go
-RUN go get github.com/01-edu/z01@latest
12
+# Install z01 package (latest v0.2.0, same as go.mod)
13
+RUN go get github.com/01-edu/z01@v0.2.0
14
15
WORKDIR /go-tests
16
COPY go.* ./
0 commit comments