From 67ff98558551dbd8312a039a441a7946f3bfdb7d Mon Sep 17 00:00:00 2001 From: "Jon R. Roma" Date: Tue, 25 May 2021 15:02:56 -0500 Subject: [PATCH] Remove the lingering .drone.yml file (#51) * Update * Remove the lingering .drone.yml file --- .drone.yml | 11 ----------- Dockerfile | 2 +- 2 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 353ae11..0000000 --- a/.drone.yml +++ /dev/null @@ -1,11 +0,0 @@ -pipeline: - build: - image: hashicorp/terraform - commands: - - apk add make - - make tfc - linter: - image: python:3 - commands: - - pip3 install --extra-index-url https://pip-test.techservices.illinois.edu/index/test tflint - - make test diff --git a/Dockerfile b/Dockerfile index f93acf7..8ba6632 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENTRYPOINT [ "/usr/bin/make", "tfc" ] FROM python:3 -RUN pip3 install --extra-index-url https://pip-test.techservices.illinois.edu/index/test tflint +RUN pip3 install --extra-index-url https://pip.as-test.techservices.illinois.edu/index/test tflint WORKDIR /tmp COPY . /tmp