mirror of
https://github.com/gomods/athens
synced 2026-02-03 14:20:31 +00:00
11 lines
141 B
Docker
11 lines
141 B
Docker
ARG GOLANG_VERSION=1.23.5
|
|
FROM golang:$GOLANG_VERSION
|
|
|
|
RUN echo $GOLANG_VERSION
|
|
|
|
RUN mkdir -p /athens/tests
|
|
|
|
WORKDIR /athens/tests
|
|
|
|
COPY . .
|