Skip to content

Commit 2db6694

Browse files
dockerfiles/dut: use non-deprecated env syntax
Fixes warnings such as: WARN: LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format Signed-off-by: Bastian Krause <[email protected]>
1 parent 51df118 commit 2db6694

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dockerfiles/staging/dut/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN set -e ;\
1818
COPY --chown=root:root ./authorized_keys /root/.ssh/authorized_keys
1919

2020
# As sshd scrubs ENV variables if they are set by the ENV varibale ensure to put the into /etc/profile as shown below
21-
ENV NOTVISIBLE "in users profile"
21+
ENV NOTVISIBLE="in users profile"
2222
RUN echo "export VISIBLE=now" >> /etc/profile
2323

2424
EXPOSE 2222

0 commit comments

Comments
 (0)