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