-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added running unciv in docker (#7031)
- Loading branch information
Showing
4 changed files
with
53 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.git | ||
Dockerfile | ||
docker-compose.yml |
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,32 @@ | ||
|
||
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 default-jre default-jdk | ||
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/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.11%2B9/OpenJDK11U-jre_x64_linux_hotspot_11.0.11_9.tar.gz | ||
|
||
# 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 ./gradlew --version | ||
|
||
# Build unciv | ||
COPY . /src/ | ||
RUN ./gradlew classes | ||
RUN ./gradlew desktop:packrLinux64 --stacktrace --info --daemon --scan | ||
RUN ./gradlew desktop:zipLinuxFilesForJar | ||
|
||
FROM accetto/ubuntu-vnc-xfce-opengl-g3 as run | ||
WORKDIR /home/headless/Desktop/ | ||
COPY --chown=1001:1001 --from=build /src/desktop/packr/* /usr/ | ||
COPY --chown=1001:1001 --from=build /src/desktop/packr/Unciv.jar /usr/share/Unciv/Unciv.jar | ||
COPY --chown=1001:1001 --from=build /src/desktop/linuxFilesForJar/* /home/headless/Desktop/ | ||
RUN chmod +x Unciv.sh | ||
USER 1001 |
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,8 @@ | ||
version: "3.6" | ||
services: | ||
unciv: | ||
build: . | ||
ports: | ||
- "6901:6901" | ||
- "5901:5901" | ||
command: /home/headless/Desktop/Unciv.sh |