mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-04 14:46:57 -05: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
|