From dfc85049997fc3542f4b025157e8c7e578002e80 Mon Sep 17 00:00:00 2001 From: Bruno Paz Date: Wed, 2 Oct 2019 21:58:07 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20dockerfile=20entrypoint=20command=C2=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 4 +++- Dockerfile | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0cc598..cd6b701 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,9 @@ jobs: needs: test steps: - uses: actions/checkout@v1 - - uses: ./ + + - name: Run integration test + uses: ./ with: dockerfile: testdata/Dockerfile diff --git a/Dockerfile b/Dockerfile index b2439e1..6c740a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,5 @@ FROM hadolint/hadolint:v1.17.2 COPY LICENSE README.md / -CMD ["hadolint"] +ENTRYPOINT [ "hadolint" ] +