Fore clear temporary docker container/image.

Change ubuntu image used
This commit is contained in:
2022-07-28 18:47:12 +02:00
parent 98846b9f32
commit 0b0414764e
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM ubuntu:latest AS blender
FROM ubuntu:22.04 AS blender
# Setup all software version request
ARG b3d_vs_major=2.90
@@ -40,7 +40,7 @@ RUN mkdir /opt/blender-git/ && cd /opt/blender-git/ \
&& make
# Setup a Multistage optimisation
FROM ubuntu:latest
FROM ubuntu:22.04
COPY --from=blender /opt/blender-git/build_linux/bin /opt/blender
ARG b3d_vs_major
ENV B3D_ADDON_PATH "$HOME/.config/blender/${b3d_vs_major}/scripts/addons"