mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 13:19:17 +01:00
10 lines
116 B
Docker
10 lines
116 B
Docker
|
FROM golang:1.14-alpine
|
||
|
|
||
|
RUN apk update
|
||
|
RUN apk add alpine-sdk
|
||
|
|
||
|
WORKDIR /testfixtures
|
||
|
COPY . .
|
||
|
|
||
|
RUN go mod download
|