penta пре 1 месец
родитељ
комит
260793e4f1
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      Dockerfile

+ 2 - 1
Dockerfile

@@ -35,7 +35,7 @@ RUN dpkg --add-architecture i386 \
         -o /usr/share/keyrings/steam.gpg \
     && printf '%s\n' \
         'deb [arch=amd64,i386 signed-by=/usr/share/keyrings/steam.gpg] https://repo.steampowered.com/steam/ stable steam' \
-        > /etc/apt/sources.list.d/steam-stable.list \
+        > /etc/apt/sources.list.d/steam-bootstrap.list \
     && apt-get update \
     && apt-get install --no-install-recommends -y \
         libgl1:amd64 \
@@ -47,6 +47,7 @@ RUN dpkg --add-architecture i386 \
         libvulkan1:amd64 \
         libvulkan1:i386 \
         steam-launcher \
+    && rm -f /etc/apt/sources.list.d/steam-bootstrap.list \
     && apt-get clean \
     && rm -rf /var/lib/apt/lists/* /var/cache/apt/*