From 33fde8aee269c80d63850cc333c1744490c7ce4c Mon Sep 17 00:00:00 2001 From: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com> Date: Thu, 14 Dec 2023 20:43:27 -0500 Subject: [PATCH] Use recommended apt order --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d4435c..0aaf163 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,8 +16,9 @@ FROM mitmproxy/mitmproxy:latest AS openssl-build ARG openssl_version openssl_dir openssl_config_dir cryptography_dir # Install build dependencies -RUN apt update -RUN apt install -y curl build-essential libffi-dev pkg-config +RUN apt update && \ + apt install -y \ + curl build-essential libffi-dev pkg-config RUN curl https://sh.rustup.rs | sh -s -- -y # Download and compile OpenSSL