Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RPCS3 with rolling release #201

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions images/es-de/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV APPIMAGE_EXTRACT_AND_RUN=1
RUN \
echo "**** Install Prereqs (Mesa/Vulkan/Fuse/QT/Misc) ****" && \
apt-get update && \
apt-get install -y software-properties-common gpg-agent wget p7zip-full libvulkan1 libglu1-mesa-dev qtbase5-dev qt5-qmake ffmpeg x11-xserver-utils libdbus-1-3 libgtk-3-0 libegl1 libsdl2-2.0-0 python3-six && \
apt-get install -y software-properties-common gpg-agent wget p7zip-full libvulkan1 libglu1-mesa-dev qtbase5-dev qt5-qmake ffmpeg x11-xserver-utils libdbus-1-3 libgtk-3-0 libegl1 libsdl2-2.0-0 python3-six curl jq && \
# Cleanup \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*
Expand Down Expand Up @@ -55,15 +55,16 @@ RUN \
echo "**** Downloading XEMU AppImage ****" && \
mkdir -p /tmp && \
cd /tmp && \
wget -O xemu-emu.AppImage https://github.com/xemu-project/xemu/releases/download/v0.7.92/xemu-v0.7.92-x86_64.AppImage
curl https://api.github.com/repos/xemu-project/xemu/releases/latest | jq '.assets[].browser_download_u
rl' | grep ".AppImage" | grep -v "dbg" | xargs wget -O xemu-emu.AppImage

# Downloading RPCS3 AppImage
ARG RPCS3_APP_IMAGE_URL=https://github.com/RPCS3/rpcs3-binaries-linux/releases/download/build-47fcb9562fd531350f7d9c847dda322c5f50d56d/rpcs3-v0.0.29-15807-47fcb956_linux64.AppImage
# Get the latest binary and download curl-> json -> wget
RUN \
echo "**** Downloading RPCS3 AppImage ****" && \
mkdir -p /tmp && \
cd /tmp && \
wget -O rpcs3-emu.AppImage "${RPCS3_APP_IMAGE_URL}"
curl https://api.github.com/repos/rpcs3/rpcs3-binaries-linux/releases/latest | jq ".assets[0].browser_download_url" | xargs wget -O rpcs3.AppImage

# Install Cemu
ARG CEMU_APP_IMAGE_URL=https://github.com/cemu-project/Cemu/releases/download/v2.0-61/Cemu-2.0-61-x86_64.AppImage
Expand Down