Files
IfcOpenShell/docker/Dockerfile_update
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
275 B
Plaintext
Raw Normal View History

2026-07-12 18:43:27 +01:00
FROM ifcopenshell-build-env:updated
# Update system
RUN dnf update -y
# Clean the caches
RUN dnf clean all && \
rm -rf /var/cache/dnf
# Setup uv
COPY --from=ghcr.io/astral-sh/uv:0.11.27 /uv /uvx /bin/
# Install Python
RUN uv python install
CMD ["sleep", "infinity"]