Merge pull request #19804 from spowelljr/LegacyKeyValueFormat
CI: Fix LegacyKeyValueFormat warning when building imagespull/19811/head
commit
07d1f22854
|
@ -43,7 +43,7 @@ RUN mkdir /app
|
||||||
RUN chmod 777 /app
|
RUN chmod 777 /app
|
||||||
|
|
||||||
RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
|
RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
|
||||||
ENV LANG en_US.utf8
|
ENV LANG=en_US.utf8
|
||||||
|
|
||||||
# dumb init will allow us to interrupt the build with ^C
|
# dumb init will allow us to interrupt the build with ^C
|
||||||
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
||||||
|
|
|
@ -278,7 +278,7 @@ COPY --from=kicbase / /
|
||||||
EXPOSE 22
|
EXPOSE 22
|
||||||
# tell systemd that it is in docker (it will check for the container env)
|
# tell systemd that it is in docker (it will check for the container env)
|
||||||
# https://systemd.io/CONTAINER_INTERFACE/
|
# https://systemd.io/CONTAINER_INTERFACE/
|
||||||
ENV container docker
|
ENV container=docker
|
||||||
# systemd exits on SIGRTMIN+3, not SIGTERM (which re-executes it)
|
# systemd exits on SIGRTMIN+3, not SIGTERM (which re-executes it)
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1201657
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1201657
|
||||||
STOPSIGNAL SIGRTMIN+3
|
STOPSIGNAL SIGRTMIN+3
|
||||||
|
|
|
@ -28,5 +28,5 @@ ARG GO_VERSION
|
||||||
|
|
||||||
RUN curl -sSL https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz | tar -C /usr/local -xzf -
|
RUN curl -sSL https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz | tar -C /usr/local -xzf -
|
||||||
|
|
||||||
ENV GOPATH /go
|
ENV GOPATH=/go
|
||||||
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin
|
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin
|
||||||
|
|
|
@ -29,5 +29,5 @@ ARG GO_VERSION
|
||||||
|
|
||||||
RUN curl -sSL https://go.dev/dl/go${GO_VERSION}.linux-arm64.tar.gz | tar -C /usr/local -xzf -
|
RUN curl -sSL https://go.dev/dl/go${GO_VERSION}.linux-arm64.tar.gz | tar -C /usr/local -xzf -
|
||||||
|
|
||||||
ENV GOPATH /go
|
ENV GOPATH=/go
|
||||||
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin
|
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin
|
||||||
|
|
Loading…
Reference in New Issue