Skip to content

Commit 478b960

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 <bst@pengutronix.de> (cherry picked from commit 2db6694)
1 parent e83df3e commit 478b960

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)