mirror of
https://github.com/stashapp/stash.git
synced 2025-12-24 01:03:24 +01:00
9 lines
277 B
Docker
9 lines
277 B
Docker
FROM golang:1.14-alpine as builder
|
|
|
|
COPY mockery /usr/local/bin
|
|
|
|
# Explicitly set a writable cache path when running --user=$(id -u):$(id -g)
|
|
# see: https://github.com/golang/go/issues/26280#issuecomment-445294378
|
|
ENV GOCACHE /tmp/.cache
|
|
|
|
ENTRYPOINT ["/usr/local/bin/mockery"]
|