From 7e9f2e38cacf95e87c74282d81cdea388fe08131 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Wed, 19 Aug 2020 13:42:55 -0700 Subject: [PATCH] Try to add hadolint back --- .drone.yml | 4 ++-- .pre-commit-config.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index fa3dc06..8d707f1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,8 +12,8 @@ steps: image: python:3 commands: - pip install docker-compose pre-commit - # This image doesn't have docker, so we skip Hadolint - - env SKIP=hadolint make check + - wget -L -o /usr/bin/hadolint https://github.com/hadolint/hadolint/releases/download/v1.18.0/hadolint-Linux-x86_64 + - make check - name: itest image: docker/compose:alpine-1.26.2 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 02e83ec..df99911 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,4 +18,4 @@ repos: rev: v2.0.0 hooks: - id: docker-compose-check - - id: hadolint + - id: hadolint-system