File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
dependencies/godot-asset-optimizer-project Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1- FROM ubuntu:22 .04
1+ FROM ubuntu:25 .04
22
33RUN apt-get update
44RUN apt-get install -y ca-certificates tini unzip curl libfontconfig1 zip
@@ -7,14 +7,13 @@ RUN apt-get install -y ca-certificates tini unzip curl libfontconfig1 zip
77RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && apt-get -y install nodejs
88
99# Install Godot
10- ARG GODOT_VERSION=4.3 -stable
11- ARG GODOT_FILENAME=Godot_v${GODOT_VERSION}_linux .x86_64
10+ ARG GODOT_VERSION=4.4.1 -stable
11+ ARG GODOT_FILENAME=godot.linux.editor .x86_64
1212
13- RUN curl -fsSL https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}/${GODOT_FILENAME}.zip -o godot.zip && \
14- unzip godot.zip -d /usr/local/bin && \
15- rm godot.zip
13+ RUN curl -fsSL https://github.com/decentraland/godotengine/releases/download/${GODOT_VERSION}/${GODOT_FILENAME} -o /usr/local/bin/${GODOT_FILENAME}
14+ RUN chmod +x /usr/local/bin/${GODOT_FILENAME}
1615
17- ENV GODOT4_EDITOR /usr/local/bin/${GODOT_FILENAME}
16+ ENV GODOT4_EDITOR= /usr/local/bin/${GODOT_FILENAME}
1817
1918# Clean apt cache
2019RUN rm -rf /var/lib/apt/lists/* /var/cache/apt/*
@@ -36,7 +35,7 @@ RUN npm i --global yarn
3635RUN yarn --frozen-lockfile
3736RUN yarn build
3837
39- ENV NODE_ENV production
38+ ENV NODE_ENV= production
4039
4140# Please _DO NOT_ use a custom ENTRYPOINT because it may prevent signals
4241# (i.e. SIGTERM) to reach the service
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ config_version=5
1212
1313config/name ="New Game Project"
1414run/main_scene ="res://scripts/main.tscn"
15- config/features =PackedStringArray ("4.3 " , "Mobile" )
15+ config/features =PackedStringArray ("4.4 " , "Mobile" )
1616config/icon ="res://icon.svg"
1717
1818[importer_defaults ]
Original file line number Diff line number Diff line change 1+ uid://ms0a3dekyp3h
Original file line number Diff line number Diff line change 11[gd_scene load_steps =2 format =3 uid ="uid://dva7w6xxlmot5" ]
22
3- [ext_resource type ="Script" path ="res://scripts/main.gd" id ="1_a7cep" ]
3+ [ext_resource type ="Script" uid = "uid://ms0a3dekyp3h" path ="res://scripts/main.gd" id ="1_a7cep" ]
44
55[node name ="Main" type ="Node" ]
66script = ExtResource ("1_a7cep" )
You can’t perform that action at this time.
0 commit comments