Skip to content

Commit

Permalink
Add libssl.so.1.1 manually
Browse files Browse the repository at this point in the history
  • Loading branch information
syynek authored Dec 16, 2023
1 parent 48246c2 commit 6439c84
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ FROM debian:bookworm
# Prerequisites
RUN apt-get -y update && apt-get install -y --no-install-recommends ca-certificates wget unzip openssl libncursesw5 libc6

# Retreving older libssl version for mtasa
RUN wget -O libssl-1.1.deb http://ftp.de.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1w-0+deb11u1_amd64.deb && \
apt -y install libssl-1.1.deb && \
rm libssl-1.1.deb

# Set timezone
ENV TZ=Europe/Berlin
RUN echo $TZ | tee /etc/timezone && \
Expand Down

0 comments on commit 6439c84

Please sign in to comment.