From 19a17fa981406e8a2f90309f6565f60de0b6c037 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Mon, 23 Jun 2025 10:05:25 +0200 Subject: [PATCH] Fix docker warning by using "ENV key=value" syntax - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 4) --- docker/alpine.Dockerfile | 4 ++-- docker/focal-32bit.Dockerfile | 4 ++-- docker/focal-arm64.Dockerfile | 4 ++-- docker/focal.Dockerfile | 4 ++-- docker/jammy-armv7-32bit.Dockerfile | 4 ++-- docker/jammy-asan.Dockerfile | 4 ++-- docker/jammy-tsan.Dockerfile | 4 ++-- docker/jammy.Dockerfile | 4 ++-- docker/noble.Dockerfile | 4 ++-- docker/opensuse-tumbleweed.docker | 4 ++-- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docker/alpine.Dockerfile b/docker/alpine.Dockerfile index f56f413e9..0b35abc50 100644 --- a/docker/alpine.Dockerfile +++ b/docker/alpine.Dockerfile @@ -1,8 +1,8 @@ FROM alpine:3.19 LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 RUN apk add --no-cache \ bash \ diff --git a/docker/focal-32bit.Dockerfile b/docker/focal-32bit.Dockerfile index b079773fb..705310f21 100644 --- a/docker/focal-32bit.Dockerfile +++ b/docker/focal-32bit.Dockerfile @@ -1,8 +1,8 @@ FROM ubuntu:20.04 LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 ENV CFLAGS="-m32" ENV DEBIAN_FRONTEND=noninteractive diff --git a/docker/focal-arm64.Dockerfile b/docker/focal-arm64.Dockerfile index a57337a83..692c73a75 100644 --- a/docker/focal-arm64.Dockerfile +++ b/docker/focal-arm64.Dockerfile @@ -1,8 +1,8 @@ FROM arm64v8/ubuntu:focal LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ diff --git a/docker/focal.Dockerfile b/docker/focal.Dockerfile index 0a00b1d9d..a07eca5b4 100644 --- a/docker/focal.Dockerfile +++ b/docker/focal.Dockerfile @@ -1,8 +1,8 @@ FROM ubuntu:20.04 LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ diff --git a/docker/jammy-armv7-32bit.Dockerfile b/docker/jammy-armv7-32bit.Dockerfile index 220eb8233..65329129d 100644 --- a/docker/jammy-armv7-32bit.Dockerfile +++ b/docker/jammy-armv7-32bit.Dockerfile @@ -1,8 +1,8 @@ FROM arm32v7/ubuntu:jammy LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ diff --git a/docker/jammy-asan.Dockerfile b/docker/jammy-asan.Dockerfile index 35c961d6e..74841cc1d 100644 --- a/docker/jammy-asan.Dockerfile +++ b/docker/jammy-asan.Dockerfile @@ -1,8 +1,8 @@ FROM ubuntu:jammy LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 RUN apt-get update \ && apt-get -y install \ diff --git a/docker/jammy-tsan.Dockerfile b/docker/jammy-tsan.Dockerfile index ccc05a405..1be9dc19e 100644 --- a/docker/jammy-tsan.Dockerfile +++ b/docker/jammy-tsan.Dockerfile @@ -1,8 +1,8 @@ FROM ubuntu:jammy LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 RUN apt-get update \ && apt-get -y install \ diff --git a/docker/jammy.Dockerfile b/docker/jammy.Dockerfile index 52180e2c8..8ef0f46ef 100644 --- a/docker/jammy.Dockerfile +++ b/docker/jammy.Dockerfile @@ -1,8 +1,8 @@ FROM ubuntu:jammy LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 RUN apt-get update \ && apt-get -y install \ diff --git a/docker/noble.Dockerfile b/docker/noble.Dockerfile index 94060a459..0636b9811 100644 --- a/docker/noble.Dockerfile +++ b/docker/noble.Dockerfile @@ -1,8 +1,8 @@ FROM ubuntu:noble LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 RUN apt-get update \ && apt-get -y install \ diff --git a/docker/opensuse-tumbleweed.docker b/docker/opensuse-tumbleweed.docker index 01a7d6ea9..142406d9e 100644 --- a/docker/opensuse-tumbleweed.docker +++ b/docker/opensuse-tumbleweed.docker @@ -1,8 +1,8 @@ FROM opensuse/tumbleweed:latest LABEL org.opencontainers.image.source=https://github.com/fish-shell/fish-shell -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 RUN zypper --non-interactive install \ bash \