Fix the container
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Nikolai Rodionov 2025-01-30 15:13:28 +01:00
parent 16449d0c9d
commit 4776ffd681
No known key found for this signature in database
GPG Key ID: 0639A45505F3BFA6
2 changed files with 4 additions and 3 deletions

2
.gdignore Normal file
View File

@ -0,0 +1,2 @@
Containerfile
helm

View File

@ -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"]