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

[airflow-site] branch master updated: Don't complaint about multiple RUN commands in Dockerfile (#406)

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

kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 5fc379a  Don't complaint about multiple RUN commands in Dockerfile (#406)
5fc379a is described below

commit 5fc379ab8c6bd04c68722a2407cc4d1fc6ddaa6f
Author: Ash Berlin-Taylor <as...@firemirror.com>
AuthorDate: Mon Apr 19 22:44:18 2021 +0100

    Don't complaint about multiple RUN commands in Dockerfile (#406)
    
    * Add documentation for Apache Airflow 2.0.2
    
    * 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