Skip to content

Commit

Permalink
Check if there are more issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Fokko committed Jul 23, 2024
1 parent de34ad4 commit 5163096
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions share/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,20 @@ RUN apt-get -qqy install --no-install-recommends libzstd-dev \
php-dev

# Required for Dotnet
RUN ARCH="$(dpkg --print-architecture)"
ENV LIBSSL_DEB="libssl1.1_1.1.1f-1ubuntu2_$ARCH.deb"
RUN if [ "$ARCH" == "amd64" ] || [ "$ARCH" == "i386" ]; then \
LIBSSL_URL="http://security.ubuntu.com/ubuntu/pool/main/o/openssl/$LIBSSL_DEB" \
else \
LIBSSL_URL="http://ports.ubuntu.com/ubuntu-ports/pool/main/o/openssl/$LIBSSL_DEB" \
fi \
wget "$LIBSSL_URL" \
dpkg -i "$LIBSSL_DEB" \
rm -f "$LIBSSL_DEB"
#RUN ARCH="$(dpkg --print-architecture)"
#ENV LIBSSL_DEB="libssl1.1_1.1.1f-1ubuntu2_$ARCH.deb"
#RUN if [ "$ARCH" == "amd64" ] || [ "$ARCH" == "i386" ]; then \
# LIBSSL_URL="https://security.ubuntu.com/ubuntu/pool/main/o/openssl/$LIBSSL_DEB" \
# else \
# LIBSSL_URL="https://ports.ubuntu.com/ubuntu-ports/pool/main/o/openssl/$LIBSSL_DEB" \
# fi \
# wget "$LIBSSL_URL" \
# dpkg -i "$LIBSSL_DEB" \
# rm -f "$LIBSSL_DEB"
RUN wget -q https://www.openssl.org/source/openssl-1.1.1q.tar.gz && \
tar -xzf openssl-1.1.1q.tar.gz && \
cd openssl-1.1.1q && \
./config && make install

# Install a maven release -------------------------------------------
# Inspired from https://github.com/apache/accumulo-docker/blob/bbb9892e165d40fb35fa19f38929effc5d0c709b/Dockerfile#L30
Expand Down

0 comments on commit 5163096

Please sign in to comment.