mirror of
https://github.com/goharbor/harbor
synced 2025-04-18 20:00:11 +00:00
8 lines
248 B
Docker
8 lines
248 B
Docker
FROM golang:1.14.5
|
|
|
|
ARG SWAGGER_VERSION
|
|
RUN curl -fsSL -o /usr/bin/swagger https://github.com/go-swagger/go-swagger/releases/download/$SWAGGER_VERSION/swagger_linux_amd64 && chmod +x /usr/bin/swagger
|
|
|
|
ENTRYPOINT ["/usr/bin/swagger"]
|
|
CMD ["--help"]
|