16 lines
549 B
Docker
16 lines
549 B
Docker
FROM dobu/deps-base-archlinux:latest
|
|
|
|
# This is used to invalidate cache as needed by build-image;
|
|
# depends on TRACK_PACKAGE_ARCHLINUX set in control
|
|
ARG UPSTREAM_VERSION
|
|
|
|
RUN pacman -Syu --noconfirm \
|
|
&& pacman -S --noconfirm glfw shattered-pixel-dungeon
|
|
|
|
RUN sed -i "s@/usr/bin/java@/usr/bin/java -Dorg.lwjgl.glfw.libname=/usr/lib/libglfw.so@" /usr/bin/shattered-pixel-dungeon
|
|
|
|
USER user
|
|
|
|
LABEL net.typeblog.dobu.desktop_file_path="/usr/share/applications/shattered-pixel-dungeon.desktop"
|
|
|
|
ENTRYPOINT [ "/usr/bin/shattered-pixel-dungeon" ]
|