diff --git a/Dockerfile b/Dockerfile
index 11e8fd0f3225743eeb763b9c19b1aff44480f9e8..042659439db1f13e481800f291ab9bc6ec9bce58 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