From 38029cf345d51af95ead7d147bee41ce20c1dd98 Mon Sep 17 00:00:00 2001 From: tomdot-dev <82123860+tomdot-dev@users.noreply.github.com> Date: Tue, 14 May 2024 20:00:21 +0200 Subject: [PATCH] Devcontainer: Ignore hadolint issues --- .devcontainer/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 895c784..cc0a059 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,12 +1,14 @@ FROM ubuntu:22.04 # Allow to build/run cross-platform containers +# hadolint ignore=DL3005,DL3008 RUN apt-get update && \ apt-get dist-upgrade -y && \ apt-get install binfmt-support -y --no-install-recommends && \ rm -rf /var/lib/apt/lists/* # Add zsh +# hadolint ignore=DL3005,DL3008 RUN apt-get update && \ apt-get dist-upgrade -y && \ apt-get install zsh -y && \