mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* Embed performer images * Embed schema migrations * Update dependencies * Embed UI * Remove remaining packr references
17 lines
261 B
Docker
17 lines
261 B
Docker
ARG DOCKER_IMAGE
|
|
FROM $DOCKER_IMAGE
|
|
|
|
RUN apk add --no-cache git gcc musl-dev make
|
|
|
|
WORKDIR /go/src/github.com/golang-migrate/migrate
|
|
|
|
ENV GO111MODULE=on
|
|
ENV COVERAGE_DIR=/tmp/coverage
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
COPY . ./
|
|
|
|
CMD ["make", "test"]
|