From 614418b57811086a8666d73bf93da2d47376c4d4 Mon Sep 17 00:00:00 2001 From: Louis Capitanchik <contact@louiscap.co> Date: Fri, 15 Nov 2024 01:21:06 +0000 Subject: [PATCH] Create subfolder for commands, install libfontconfig --- Dockerfile | 6 +++--- godot_build.sh => commands/godot_build.sh | 0 godot_install.sh => commands/godot_install.sh | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename godot_build.sh => commands/godot_build.sh (100%) rename godot_install.sh => commands/godot_install.sh (100%) diff --git a/Dockerfile b/Dockerfile index 11e8fd0..0426594 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,10 @@ ARG PLATFORM="linux.x86_64" ARG GODOT_VERSION="4.3-stable" RUN apt-get update \ - && apt-get install -y wget unzip \ + && apt-get install -y wget unzip libfontconfig1 \ && rm -rf /var/lib/apt/lists/* -COPY ./godot_build.sh /usr/bin/godot_build -COPY ./godot_install.sh /usr/bin/godot_install +COPY commands/godot_build.sh /usr/bin/godot_build +COPY commands/godot_install.sh /usr/bin/godot_install RUN godot_install $GODOT_VERSION $PLATFORM && cp ./godot /usr/bin/godot \ No newline at end of file diff --git a/godot_build.sh b/commands/godot_build.sh similarity index 100% rename from godot_build.sh rename to commands/godot_build.sh diff --git a/godot_install.sh b/commands/godot_install.sh similarity index 100% rename from godot_install.sh rename to commands/godot_install.sh -- GitLab