mirror of
https://github.com/gomods/athens
synced 2026-02-03 12:10:32 +00:00
Upgrades to the Go 1.22 toolchain. Upgrades golangci-lint to 1.61.0 and disables some new linters. --------- Co-authored-by: Nicholas Wiersma <nick@wiersma.co.za>
11 lines
139 B
Docker
11 lines
139 B
Docker
ARG GOLANG_VERSION=1.22
|
|
FROM golang:$GOLANG_VERSION
|
|
|
|
RUN echo $GOLANG_VERSION
|
|
|
|
RUN mkdir -p /athens/tests
|
|
|
|
WORKDIR /athens/tests
|
|
|
|
COPY . .
|