Files
query-orchestration/vendor/github.com/vektra/mockery/v2/Dockerfile
T
Jay Brown 7d78e65d0c Merged in feature/semver (pull request #93)
Add semantic versioning to all services

* working

* Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver

* 1.24 mod

* go upgrade

* tool

* Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver
2025-03-06 22:33:39 +00:00

12 lines
335 B
Docker

FROM golang:1.24-alpine as builder
RUN apk --update add --no-cache gcc musl-dev git openssh
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"]