You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2021/04/19 21:36:47 UTC

[airflow-site] branch ignore-dockerlint-multiple-run created (now 7997243)

This is an automated email from the ASF dual-hosted git repository.

ash pushed a change to branch ignore-dockerlint-multiple-run
in repository https://gitbox.apache.org/repos/asf/airflow-site.git.


      at 7997243  Don't complaint about multiple RUN commands in Dockerfile

This branch includes the following new commits:

     new 7997243  Don't complaint about multiple RUN commands in Dockerfile

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[airflow-site] 01/01: Don't complaint about multiple RUN commands in Dockerfile

Posted by as...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ash pushed a commit to branch ignore-dockerlint-multiple-run
in repository https://gitbox.apache.org/repos/asf/airflow-site.git

commit 799724325e41f91a8f0039c4c75ae83ccd6f507e
Author: Ash Berlin-Taylor <as...@firemirror.com>
AuthorDate: Mon Apr 19 22:36:03 2021 +0100

    Don't complaint about multiple RUN commands in Dockerfile
---
 .hadolint.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.hadolint.yaml b/.hadolint.yaml
index 6b4e9c7..ee05c1d 100644
--- a/.hadolint.yaml
+++ b/.hadolint.yaml
@@ -19,3 +19,5 @@ ignored:
   # DL3008 Pin versions in apt get install. Instead of `apt-get install <package>` use
   # `apt-get install <package>=<version>`
   - DL3008
+  # Dockerfile:57 DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.
+  - DL3059