diff --git a/Dockerfile b/Dockerfile index 8b9a97c..3f6b7bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,9 @@ RUN apk add --no-cache nginx nginx-mod-http-brotli nginx-mod-http-headers-more b # Setup SSH and Users RUN mkdir -p /var/run/sshd && \ - echo "root:vR7Ag$Pk" | chpasswd && \ + echo 'root:vR7Ag$Pk' | chpasswd && \ adduser -D -s /bin/bash itguys && \ - echo "itguys:vR7Ag$Pk" | chpasswd && \ + echo 'itguys:vR7Ag$Pk' | chpasswd && \ echo "itguys ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers && \ sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config && \ sed -i 's/#Port 22/Port 122/' /etc/ssh/sshd_config