mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
* Update .drone.yml for Go 1.14 * Update appveyor.yml for Go 1.14 * Update Dockerfile.test for Go 1.14 * Update Dockerfile for Go 1.14 * Update scripts/build-image/Dockerfile
11 lines
139 B
Docker
11 lines
139 B
Docker
ARG GOLANG_VERSION=1.14
|
|
FROM golang:$GOLANG_VERSION
|
|
|
|
RUN echo $GOLANG_VERSION
|
|
|
|
RUN mkdir -p /athens/tests
|
|
|
|
WORKDIR /athens/tests
|
|
|
|
COPY . .
|