File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ RUN mkdir /app
43
43
RUN chmod 777 /app
44
44
45
45
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
47
47
48
48
# dumb init will allow us to interrupt the build with ^C
49
49
ENTRYPOINT ["/usr/bin/dumb-init" , "--" ]
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ COPY --from=kicbase / /
278
278
EXPOSE 22
279
279
# tell systemd that it is in docker (it will check for the container env)
280
280
# https://systemd.io/CONTAINER_INTERFACE/
281
- ENV container docker
281
+ ENV container= docker
282
282
# systemd exits on SIGRTMIN+3, not SIGTERM (which re-executes it)
283
283
# https://bugzilla.redhat.com/show_bug.cgi?id=1201657
284
284
STOPSIGNAL SIGRTMIN+3
Original file line number Diff line number Diff line change @@ -28,5 +28,5 @@ ARG GO_VERSION
28
28
29
29
RUN curl -sSL https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz | tar -C /usr/local -xzf -
30
30
31
- ENV GOPATH /go
31
+ ENV GOPATH= /go
32
32
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin
Original file line number Diff line number Diff line change @@ -29,5 +29,5 @@ ARG GO_VERSION
29
29
30
30
RUN curl -sSL https://go.dev/dl/go${GO_VERSION}.linux-arm64.tar.gz | tar -C /usr/local -xzf -
31
31
32
- ENV GOPATH /go
32
+ ENV GOPATH= /go
33
33
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin
You can’t perform that action at this time.
0 commit comments