mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 01:59:44 +01:00
9 lines
257 B
Docker
9 lines
257 B
Docker
|
ARG GOLANG
|
||
|
FROM ${GOLANG}
|
||
|
|
||
|
ARG SPECTRAL_VERSION
|
||
|
RUN curl -fsSL -o /usr/bin/spectral https://github.com/stoplightio/spectral/releases/download/$SPECTRAL_VERSION/spectral-linux && chmod +x /usr/bin/spectral
|
||
|
|
||
|
ENTRYPOINT ["/usr/bin/spectral"]
|
||
|
CMD ["--version"]
|