builds godot
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 17 |
1 files changed, 6 insertions, 11 deletions
@@ -4,23 +4,15 @@ LABEL author="bendn" USER root ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates \ - git \ - git-lfs \ - python \ - python-openssl \ - unzip \ - wget \ - zip \ - adb \ + git git-lfs unzip sudo adb \ openjdk-11-jdk-headless \ - rsync \ + wget zip rsync wine64 \ && rm -rf /var/lib/apt/lists/* ENV JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 ARG GODOT_VERSION="3.5" -ARG RELEASE_NAME="rc" +ARG RELEASE_NAME="stable" COPY ./templates.tpz /root/templates.tpz COPY ./godot /usr/local/bin/godot @@ -33,5 +25,8 @@ RUN mkdir ~/.cache \ # Install editor-settings.tres ADD https://raw.githubusercontent.com/bend-n/godot-builds/main/.github/editor-settings.tres /root/.config/godot/editor_settings-3.tres +# Install rcedit +ADD https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe /usr/share/rcedit.exe + # Test if godot is working RUN godot -e -q |