diff --git a/.gdignore b/.gdignore new file mode 100644 index 0000000..8c6a3f5 --- /dev/null +++ b/.gdignore @@ -0,0 +1,2 @@ +Containerfile +helm diff --git a/Containerfile b/Containerfile index ddabda4..09645d1 100644 --- a/Containerfile +++ b/Containerfile @@ -20,13 +20,12 @@ WORKDIR /src COPY --from=dudo /out/godot /usr/bin/godot RUN mkdir -p /root/.local/share/godot/export_templates/4.3.stable/ COPY --from=dudo /out/templates /root/.local/share/godot/export_templates/4.3.stable -RUN ls -R /root/.local/share/godot/export_templates/4.3.stable COPY . . -RUN ls $HOME/.local/share/godot/export_templates/4.3.stable/ RUN mkdir /out RUN godot --headless --export-debug "[Dedicated Server] Linux" /out/open_strike FROM ubuntu +RUN apt-get update -y && apt-get install fontconfig -y WORKDIR /app COPY --from=builder /out . -CMD ["/out/open_strike.sh"] +CMD ["/app/open_strike.sh"]