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