File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/ue4docker/dockerfiles/ue4-full/linux Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,14 @@ RUN pip3 install --upgrade pip setuptools wheel
1919RUN pip3 install "$CONAN_VERSION" "$UE4CLI_VERSION" "$CONAN_UE4CLI_VERSION"
2020USER ue4
2121
22+ # Copy in UBT from minimal image, if present (required for `ue4 conan generate` to work on UE5)
23+ ARG UBT_DIR="/home/ue4/UnrealEngine/Engine/Binaries/DotNET"
24+ {% if combine %}
25+ COPY --from=minimal --chown=ue4:ue4 $UBT_DIR/UnrealBuildToo[l] $UBT_DIR/UnrealBuildTool
26+ {% else %}
27+ COPY --from=${NAMESPACE}/ue4-minimal:${TAG}-${PREREQS_TAG} --chown=ue4:ue4 $UBT_DIR/UnrealBuildToo[l] $UBT_DIR/UnrealBuildTool
28+ {% endif %}
29+
2230# Extract the third-party library details from UBT
2331RUN ue4 setroot /home/ue4/UnrealEngine
2432RUN ue4 conan generate
You can’t perform that action at this time.
0 commit comments