mirror of
https://github.com/yairm210/Unciv.git
synced 2024-12-22 16:04:23 +07:00
ca28034a3c
* Update Docker signing GitHub action and consolidate RUN commands in Dockerfile * Fix: Readme should use yairm210/unciv for docker reference
44 lines
1.7 KiB
Docker
44 lines
1.7 KiB
Docker
ARG ARG_COMPILE_BASE_IMAGE=accetto/ubuntu-vnc-xfce-opengl-g3
|
|
|
|
FROM $ARG_COMPILE_BASE_IMAGE as build
|
|
|
|
USER root
|
|
RUN apt update && \
|
|
apt upgrade -y && \
|
|
apt install --fix-broken -y wget curl openjdk-17-jdk openjdk-11-jdk unzip
|
|
|
|
WORKDIR /src
|
|
# Get dependencies
|
|
RUN wget -q -O packr-all-4.0.0.jar https://github.com/libgdx/packr/releases/download/4.0.0/packr-all-4.0.0.jar && \
|
|
wget -q -O jre-linux-64.tar.gz https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.19%2B7/OpenJDK11U-jre_x64_linux_hotspot_11.0.19_7.tar.gz
|
|
|
|
|
|
# Gradle is dumb (https://github.com/gradle/gradle/issues/22921) and doesn't recognize the JDK location
|
|
# Solution from https://www.linux.org.ru/forum/desktop/17285826 ¯\_(ツ)_/¯
|
|
RUN rm -rf /usr/lib/jvm/openjdk-17
|
|
RUN ln -s /usr/lib/jvm/java-17-openjdk-amd64 /usr/lib/jvm/openjdk-17
|
|
|
|
|
|
# https://nieldw.medium.com/caching-gradle-binaries-in-a-docker-build-when-using-the-gradle-wrapper-277c17e7dd22
|
|
# Get gradle distribution
|
|
COPY *.gradle gradle.* gradlew /src/
|
|
COPY gradle /src/gradle
|
|
WORKDIR /src
|
|
RUN chmod +x ./gradlew && ./gradlew --version
|
|
|
|
# Build unciv
|
|
COPY . /src/
|
|
RUN chmod +x ./gradlew && ./gradlew desktop:classes && \
|
|
./gradlew desktop:dist && \
|
|
./gradlew desktop:zipLinuxFilesForJar && \
|
|
./gradlew desktop:packrLinux64 --stacktrace --info --daemon --scan && \
|
|
cd /src/deploy && unzip Unciv-Linux64.zip
|
|
|
|
FROM accetto/ubuntu-vnc-xfce-opengl-g3 as run
|
|
WORKDIR /home/headless/Desktop/
|
|
COPY --chown=1001:1001 --from=build /src/deploy/* /usr/
|
|
COPY --chown=1001:1001 --from=build /src/desktop/build/libs/Unciv.jar /usr/share/Unciv/Unciv.jar
|
|
COPY --chown=1001:1001 --chmod=0755 --from=build /src/desktop/linuxFilesForJar/* /home/headless/Desktop/
|
|
USER 1001
|
|
CMD [ "/home/headless/Desktop/Unciv.sh" ]
|