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>
9 lines
116 B
Docker
Vendored
9 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
|