fix, we need openssl package even in non-debug builds

pull/51/head
ricardop 2020-06-08 15:48:14 +02:00
parent 6a1fe384f5
commit 2c8be197be
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ RUN [ "a$DO_DEBUG_BUILD" == "a1" ] && { echo "Debug build ENABLED." \
&& apk del --purge git g++ libffi-dev openssl-dev python3-dev \
&& rm -rf /var/cache/apk/* \
&& rm -rf ~/.cache/pip \
; } || { echo "Debug build disabled." && apk add --update bash ca-certificates coreutils && rm -rf /var/cache/apk/*; }
; } || { echo "Debug build disabled." && apk add --update bash ca-certificates coreutils openssl && rm -rf /var/cache/apk/*; }
# Required for mitmproxy
ENV LANG=en_US.UTF-8