This repository has been archived on 2024-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
forgejo/vendor/github.com/go-testfixtures/testfixtures/v3/Dockerfile

10 lines
116 B
Docker

FROM golang:1.15-alpine
RUN apk update
RUN apk add alpine-sdk
WORKDIR /testfixtures
COPY . .
RUN go mod download