From 3b473f81a18dedd1a985823a51f411d0439eead2 Mon Sep 17 00:00:00 2001 From: Caleb Fultz Date: Mon, 13 Nov 2023 11:33:56 -0500 Subject: [PATCH] Making things work better with Debian --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5473660..e8b35c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Cause fuck Ubuntu -FROM debian:bookworm-slim AS installer +FROM debian:bullseye-slim # Who to contact LABEL maintainer="cfultz " @@ -21,6 +21,8 @@ RUN apt-get install --yes dialog apt-utils wget libsdl-image1.2 # Adding Zandronum repo and installing the application +#RUN wget http://ftp.us.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1n-0+deb11u4_amd64.deb +#RUN gdebi --non-interactive libssl1.1_1.1.1n-0+deb11u4_amd64.deb RUN wget -O /etc/apt/trusted.gpg.d/drdteam.gpg https://debian.drdteam.org/drdteam.gpg RUN echo "deb https://debian.drdteam.org stable multiverse" >> /etc/apt/sources.list RUN apt-get update --yes