mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
9e6a79bea9
* upgrade to use testfixtures v3 * simplify logic * make vendor * update per @lunny * Update templates/repo/empty.tmpl * Update templates/repo/empty.tmpl Co-authored-by: Lauris BH <lauris@nix.lv>
10 lines
116 B
Docker
Vendored
10 lines
116 B
Docker
Vendored
FROM golang:1.14-alpine
|
|
|
|
RUN apk update
|
|
RUN apk add alpine-sdk
|
|
|
|
WORKDIR /testfixtures
|
|
COPY . .
|
|
|
|
RUN go mod download
|