From 6b1513a769cd19b3435f465689d79989e090915e Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Wed, 19 Jul 2023 15:24:28 -0400 Subject: [PATCH] Clean up garbage characters --- Docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docker/Dockerfile b/Docker/Dockerfile index aa1887027..6fcaa9db6 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -26,8 +26,8 @@ RUN cd /opt/sources && git clone --single-branch https://github.com/cisco/hash-s && sed -i 's/USE_OPENSSL 1/USE_OPENSSL 0/g' sha256.h && make -j4 hss_lib_thread.a # Install pkixssh to /opt/pkixssh for X509 interop testing with wolfSSH -RUN mkdir /var/empty -RUN cd /opt/sources && wget https://roumenpetrov.info/secsh/src/pkixssh-14.1.1.tar.gz && tar xvf pkixssh-14.1.1.tar.gz && cd pkixssh-14.1.1 && ./configure --prefix=/opt/pkixssh/ --exec-prefix=/opt/pkixssh/ && make install +RUN mkdir /var/empty +RUN cd /opt/sources && wget https://roumenpetrov.info/secsh/src/pkixssh-14.1.1.tar.gz && tar xvf pkixssh-14.1.1.tar.gz && cd pkixssh-14.1.1 && ./configure --prefix=/opt/pkixssh/ --exec-prefix=/opt/pkixssh/ && make install # Allow non-root to use tcpdump (will need NET_RAW and NET_ADMIN capability when running the container) RUN setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/bin/tcpdump