Skip to content

Commit ffd6240

Browse files
[BOLT] Update Docker to use Ubuntu 24.04 (#99421)
Updates the Dockerfile to use Ubuntu 24.04 due to CMake wanting a newer version. Can be tested by trying to build the Docker image currently in main and then try building the Docker image in this PR.
1 parent abc2eae commit ffd6240

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bolt/utils/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:20.04 AS builder
1+
FROM ubuntu:24.04 AS builder
22

33
ARG DEBIAN_FRONTEND=noninteractive
44
ENV TZ=UTC
@@ -26,6 +26,6 @@ RUN mkdir build && \
2626
ninja install-llvm-bolt install-perf2bolt install-merge-fdata \
2727
install-llvm-boltdiff install-bolt_rt
2828

29-
FROM ubuntu:20.04
29+
FROM ubuntu:24.04
3030

3131
COPY --from=builder /home/bolt/install /usr/local

0 commit comments

Comments
 (0)