Skip to content

Commit c1f8377

Browse files
committed
CI: Fix LegacyKeyValueFormat warning when building images
1 parent c080701 commit c1f8377

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

deploy/iso/minikube-iso/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN mkdir /app
4343
RUN chmod 777 /app
4444

4545
RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
46-
ENV LANG en_US.utf8
46+
ENV LANG=en_US.utf8
4747

4848
# dumb init will allow us to interrupt the build with ^C
4949
ENTRYPOINT ["/usr/bin/dumb-init", "--"]

deploy/kicbase/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ COPY --from=kicbase / /
278278
EXPOSE 22
279279
# tell systemd that it is in docker (it will check for the container env)
280280
# https://systemd.io/CONTAINER_INTERFACE/
281-
ENV container docker
281+
ENV container=docker
282282
# systemd exits on SIGRTMIN+3, not SIGTERM (which re-executes it)
283283
# https://bugzilla.redhat.com/show_bug.cgi?id=1201657
284284
STOPSIGNAL SIGRTMIN+3

installers/linux/kvm/Dockerfile.amd64

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ ARG GO_VERSION
2828

2929
RUN curl -sSL https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz | tar -C /usr/local -xzf -
3030

31-
ENV GOPATH /go
31+
ENV GOPATH=/go
3232
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin

installers/linux/kvm/Dockerfile.arm64

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ ARG GO_VERSION
2929

3030
RUN curl -sSL https://go.dev/dl/go${GO_VERSION}.linux-arm64.tar.gz | tar -C /usr/local -xzf -
3131

32-
ENV GOPATH /go
32+
ENV GOPATH=/go
3333
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin

0 commit comments

Comments
 (0)