Skip to content

Commit

Permalink
docker: upgrade to openssl-1.0.2r for sharedlibs
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlau authored and rvagg committed Mar 14, 2019
1 parent 36e8b32 commit 3891a43
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ RUN addgroup --gid {{ server_user_gid.stdout_lines[0] }} {{ server_user }}

RUN adduser --gid {{ server_user_gid.stdout_lines[0] }} --uid {{ server_user_uid.stdout_lines[0] }} --disabled-password --gecos {{ server_user }} {{ server_user }}

ENV OPENSSL102DIR /opt/openssl-1.0.2q
ENV OPENSSL102DIR /opt/openssl-1.0.2r

RUN mkdir -p /tmp/openssl_1.0.2q && \
cd /tmp/openssl_1.0.2q && \
curl -sL https://www.openssl.org/source/openssl-1.0.2q.tar.gz | tar zxv --strip=1 && \
RUN mkdir -p /tmp/openssl_1.0.2r && \
cd /tmp/openssl_1.0.2r && \
curl -sL https://www.openssl.org/source/openssl-1.0.2r.tar.gz | tar zxv --strip=1 && \
./Configure shared linux-x86_64 --prefix=$OPENSSL102DIR -fPIC && \
make -j 6 && \
make install && \
rm -rf /tmp/openssl_1.0.2q
rm -rf /tmp/openssl_1.0.r

ENV OPENSSL110DIR /opt/openssl-1.1.0j

Expand Down

0 comments on commit 3891a43

Please sign in to comment.