diff --git "a/{{cookiecutter.project_name|replace(\" \", \"\")}}/Dockerfile" "b/{{cookiecutter.project_name|replace(\" \", \"\")}}/Dockerfile" index 199e217..e31347b 100644 --- "a/{{cookiecutter.project_name|replace(\" \", \"\")}}/Dockerfile" +++ "b/{{cookiecutter.project_name|replace(\" \", \"\")}}/Dockerfile" @@ -21,6 +21,8 @@ LABEL org.opencontainers.image.source="https://github.com/SeisoLLC/{{ cookiecutt LABEL org.opencontainers.image.revision="${COMMIT_HASH}" LABEL org.opencontainers.image.licenses="{{ cookiecutter.license }}" +# Set noninteractive as an arg so it's only available at build time +ARG DEBIAN_FRONTEND=noninteractive # hadolint ignore=DL3008,DL3013 RUN apt-get update \ && apt-get install -y --no-install-recommends software-properties-common \