diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 8361261f4..ae8ad9be0 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -1,7 +1,9 @@ FROM alpine:latest -RUN apk add --no-cache ca-certificates curl git && update-ca-certificates +RUN apk add --no-cache ca-certificates curl git nodejs npm && update-ca-certificates +RUN npm install -g replicated-lint COPY replicated /replicated ENV IN_CONTAINER 1 LABEL "com.replicated.vendor_cli"="true" WORKDIR /out ENTRYPOINT [ "/replicated" ] +