Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-10-23 19:29:34 +02:00
padre 456d7051d8
commit 7d923a5a2e
Se han modificado 3 ficheros con 4 adiciones y 5 borrados

Ver fichero

@@ -25,6 +25,7 @@ RUN apt-get update && apt-get install -y \
libxshmfence1 \
x11-apps \
pulseaudio \
libatomic1 \
&& rm -rf /var/lib/apt/lists/*
# Create a non-root user to run Discord
@@ -32,10 +33,10 @@ RUN useradd -m -s /bin/bash discord && \
mkdir -p /home/discord/.config
# Copy the Discord .deb package
RUN wget -O /tmp/discord.deb https://discord.com/api/download?platform=linux&format=deb
RUN wget -O /tmp/discord.deb "https://discord.com/api/download?platform=linux&format=deb"
# Install Discord
RUN dpkg -i /tmp/discord.deb || true && \
RUN dpkg -i /tmp/discord.deb && \
apt-get update && \
apt-get -f install -y && \
rm /tmp/discord.deb && \