Files
athens/Dockerfile.test
Matt 0092d3a118 Upgrade to Go 1.22 toolchain (#1987)
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>
2024-09-28 05:51:14 +00:00

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 . .