Files
athens/Dockerfile.test
2022-03-21 10:47:41 -07:00

11 lines
139 B
Docker

ARG GOLANG_VERSION=1.18
FROM golang:$GOLANG_VERSION
RUN echo $GOLANG_VERSION
RUN mkdir -p /athens/tests
WORKDIR /athens/tests
COPY . .