From cfafbfba52aef776163fcdac3a91d73b72815a56 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Tue, 30 Jul 2024 10:40:16 +0200 Subject: [PATCH] fix syntax --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a59a50a..b7df0a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM python:3.12.4-bookworm ENV DEBIAN_FRONTEND=noninteractive -ENV PATH="$PATH:/home/ansible-user/.local/bin" # nötig damit die ansible-tools gefunden werden + # nötig damit die ansible-tools gefunden werden +ENV PATH="$PATH:/home/ansible-user/.local/bin" + # hadolint ignore=DL3008 RUN apt-get update \