From c3171ad58bfa9628a251fc42dfda7d425f295d50 Mon Sep 17 00:00:00 2001 From: Travis Groth Date: Thu, 28 Oct 2021 18:42:06 -0400 Subject: [PATCH] ci: remove hadolint (#2726) --- .github/workflows/test.yaml | 18 ------------------ Dockerfile | 2 -- Dockerfile.debug | 4 ---- 3 files changed, 24 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 124580cab..958015288 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -179,24 +179,6 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Hadolint - Master - uses: hadolint/hadolint-action@v1.5.0 - with: - Dockerfile: Dockerfile - ignore: DL3059 - failure-threshold: error - - name: Hadolint - Debug - uses: hadolint/hadolint-action@v1.5.0 - with: - Dockerfile: Dockerfile.debug - ignore: DL3059 - failure-threshold: error - - name: Hadolint - Release - uses: hadolint/hadolint-action@v1.5.0 - with: - Dockerfile: .github/Dockerfile-release - ignore: DL3059 - failure-threshold: error - name: build run: docker build . diff --git a/Dockerfile b/Dockerfile index 006fe2111..27d77ede1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,6 @@ -# hadolint ignore=DL3007 FROM golang:latest as build WORKDIR /go/src/github.com/pomerium/pomerium -# hadolint ignore=DL3008 RUN apt-get update \ && apt-get -y --no-install-recommends install zip diff --git a/Dockerfile.debug b/Dockerfile.debug index 76694649e..340ff636d 100644 --- a/Dockerfile.debug +++ b/Dockerfile.debug @@ -1,8 +1,6 @@ -# hadolint ignore=DL3007 FROM golang:latest as build WORKDIR /go/src/github.com/pomerium/pomerium -# hadolint ignore=DL3008 RUN apt-get update \ && apt-get -y --no-install-recommends install zip @@ -18,11 +16,9 @@ RUN make build-debug NAME=pomerium-cli RUN touch /config.yaml RUN go get github.com/go-delve/delve/cmd/dlv -# hadolint ignore=DL3007 FROM alpine:latest ENV AUTOCERT_DIR /data/autocert WORKDIR /pomerium -# hadolint ignore=DL3018 RUN apk add --no-cache ca-certificates libc6-compat gcompat # Remove expired root (https://github.com/pomerium/pomerium/issues/2653) RUN rm /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt && update-ca-certificates