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