-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #193 from rikman122/master
Added Heroic Games Launcher image
- Loading branch information
Showing
3 changed files
with
65 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# syntax=docker/dockerfile:1.4 | ||
ARG BASE_APP_IMAGE | ||
|
||
# hadolint ignore=DL3006 | ||
FROM ${BASE_APP_IMAGE} | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
#Added 32-bit libs because of GE-Proton needs | ||
ARG REQUIRED_PACKAGES=" \ | ||
libfreetype6:i386 \ | ||
libvulkan1 \ | ||
libvulkan1:i386 \ | ||
mesa-vulkan-drivers \ | ||
mesa-vulkan-drivers:i386 \ | ||
wine64 \ | ||
wine32 \ | ||
libasound2-plugins:i386 \ | ||
libsdl2-2.0-0:i386 \ | ||
libdbus-1-3:i386 \ | ||
libsqlite3-0:i386 \ | ||
wine-stable \ | ||
winetricks \ | ||
zenity \ | ||
libnotify4 \ | ||
xdg-utils \ | ||
libsecret-1-0 \ | ||
curl \ | ||
unzip \ | ||
p7zip-full \ | ||
cabextract \ | ||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav \ | ||
gstreamer1.0-plugins-base:i386 gstreamer1.0-plugins-good:i386 gstreamer1.0-plugins-bad:i386 gstreamer1.0-plugins-ugly:i386 gstreamer1.0-libav:i386 \ | ||
" | ||
|
||
RUN dpkg --add-architecture i386 && \ | ||
apt-get update && \ | ||
apt-get install -y --no-install-recommends $REQUIRED_PACKAGES && \ | ||
wget https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/releases/download/v2.15.2/heroic_2.15.2_amd64.deb && \ | ||
dpkg -i ./heroic_2.15.2_amd64.deb && \ | ||
rm ./heroic_2.15.2_amd64.deb && \ | ||
apt-get autoremove -y && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY --chmod=777 scripts/startup.sh /opt/gow/startup-app.sh | ||
|
||
ENV XDG_RUNTIME_DIR=/tmp/.X11-unix | ||
|
||
ARG IMAGE_SOURCE | ||
LABEL org.opencontainers.image.source=$IMAGE_SOURCE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
source /opt/gow/launch-comp.sh | ||
launcher /usr/bin/heroic --no-sandbox |