2023-02-15 16:28:57 +01:00
|
|
|
FROM reg.cadoles.com/proxy_cache/library/golang:1.15 as envtpl
|
2019-12-24 12:54:32 +01:00
|
|
|
|
|
|
|
ARG HTTP_PROXY=
|
|
|
|
ARG HTTPS_PROXY=
|
|
|
|
ARG http_proxy=
|
|
|
|
ARG https_proxy=
|
|
|
|
|
|
|
|
RUN apt-get update -y && apt-get install -y git
|
|
|
|
|
|
|
|
RUN git clone https://github.com/subfuzion/envtpl /src \
|
|
|
|
&& cd /src \
|
|
|
|
&& git checkout v1.0.0 \
|
|
|
|
&& CGO_ENABLED=0 GOOS=linux go build \
|
|
|
|
-ldflags "-X main.AppVersionMetadata=$(date -u +%s)" \
|
|
|
|
-a -installsuffix cgo -o ./bin/envtpl ./cmd/envtpl/.
|
|
|
|
|
2023-02-15 16:28:57 +01:00
|
|
|
FROM reg.cadoles.com/proxy_cache/library/alpine:3.13
|
2019-12-24 12:54:32 +01:00
|
|
|
|
|
|
|
ARG HTTP_PROXY=
|
|
|
|
ARG HTTPS_PROXY=
|
|
|
|
ARG http_proxy=
|
|
|
|
ARG https_proxy=
|
|
|
|
|
|
|
|
COPY --from=envtpl /src/bin/envtpl /usr/local/bin/envtpl
|
|
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
nss \
|
|
|
|
freetype \
|
|
|
|
freetype-dev \
|
|
|
|
harfbuzz \
|
|
|
|
ca-certificates \
|
|
|
|
ttf-freefont \
|
|
|
|
nodejs \
|
|
|
|
npm \
|
|
|
|
chromium
|
|
|
|
|
|
|
|
RUN npm install -g lighthouse
|
|
|
|
|
|
|
|
RUN adduser -D lighthouse
|
|
|
|
|
|
|
|
COPY run-audit.sh /usr/local/bin/run-audit
|
|
|
|
RUN chmod +x /usr/local/bin/run-audit
|
|
|
|
|
|
|
|
COPY config.js.tmpl /home/lighthouse/config.js.tmpl
|
|
|
|
|
|
|
|
WORKDIR /home/lighthouse
|
|
|
|
|
|
|
|
RUN mkdir /home/lighthouse/reports
|
|
|
|
|
|
|
|
RUN chown -R lighthouse: /home/lighthouse
|
|
|
|
|
|
|
|
USER lighthouse
|
|
|
|
|
|
|
|
CMD /usr/local/bin/run-audit
|