Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion simplerisk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ RUN dpkg-divert --local --rename /usr/bin/ischroot && \
curl \
ca-certificates \
supervisor && \
rm -rf /var/lib/apt/lists
rm -rf /var/lib/apt/lists && \
update-ca-certificates

# Create the OpenSSL password
RUN echo "$(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-32})" > /passwords/pass_openssl.txt
Expand Down
3 changes: 2 additions & 1 deletion simplerisk/generate_dockerfile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ RUN dpkg-divert --local --rename /usr/bin/ischroot && \\
curl \\
ca-certificates \\
supervisor && \\
rm -rf /var/lib/apt/lists
rm -rf /var/lib/apt/lists && \\
update-ca-certificates

# Create the OpenSSL password
RUN echo "\$(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c\${1:-32})" > /passwords/pass_openssl.txt
Expand Down