File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- FROM ubuntu:24.04 AS build
1
+ # Note that we intentionally do not use ubuntu:24.04 or later pending a
2
+ # resolution to https://github.com/coder/coder/issues/17316.
3
+ FROM ubuntu:22.04 AS build
2
4
USER root
3
5
RUN apt-get update && \
4
6
apt-get install -y \
@@ -54,12 +56,12 @@ RUN case ${TARGETPLATFORM} in \
54
56
printf "Unsupported architecture: %s\n " "${TARGETPLATFORM}" >&2 \
55
57
exit 1 ;; \
56
58
esac && \
57
- curl -o solvers.zip -sL "https://github.com/GaloisInc/what4-solvers/releases/download/snapshot-20250326/ubuntu-24 .04-${WHAT4_SOLVERS_ARCH}-bin.zip"
59
+ curl -o solvers.zip -sL "https://github.com/GaloisInc/what4-solvers/releases/download/snapshot-20250326/ubuntu-22 .04-${WHAT4_SOLVERS_ARCH}-bin.zip"
58
60
RUN unzip solvers.zip && rm solvers.zip && chmod +x *
59
61
USER root
60
62
RUN chown -R root:root /home/saw/rootfs
61
63
62
- FROM ubuntu:24 .04
64
+ FROM ubuntu:22 .04
63
65
RUN apt-get update && \
64
66
apt-get install -y libgmp10 libgomp1 libffi8 wget libncurses6 unzip libreadline-dev openjdk-11-jdk-headless zlib1g
65
67
COPY --from=build /home/saw/rootfs /
Original file line number Diff line number Diff line change 1
- FROM ubuntu:24.04 AS build
1
+ # Note that we intentionally do not use ubuntu:24.04 or later pending a
2
+ # resolution to https://github.com/coder/coder/issues/17316.
3
+ FROM ubuntu:22.04 AS build
2
4
USER root
3
5
RUN apt-get update && \
4
6
apt-get install -y \
@@ -55,12 +57,12 @@ RUN case ${TARGETPLATFORM} in \
55
57
printf "Unsupported architecture: %s\n " "${TARGETPLATFORM}" >&2 \
56
58
exit 1 ;; \
57
59
esac && \
58
- curl -o solvers.zip -sL "https://github.com/GaloisInc/what4-solvers/releases/download/snapshot-20250326/ubuntu-24 .04-${WHAT4_SOLVERS_ARCH}-bin.zip"
60
+ curl -o solvers.zip -sL "https://github.com/GaloisInc/what4-solvers/releases/download/snapshot-20250326/ubuntu-22 .04-${WHAT4_SOLVERS_ARCH}-bin.zip"
59
61
RUN unzip solvers.zip && rm solvers.zip && chmod +x *
60
62
USER root
61
63
RUN chown -R root:root /home/saw/rootfs
62
64
63
- FROM ubuntu:24 .04
65
+ FROM ubuntu:22 .04
64
66
RUN apt-get update && \
65
67
apt-get install -y libgmp10 libgomp1 libffi8 wget libncurses6 libreadline-dev unzip zlib1g
66
68
COPY --from=build /home/saw/rootfs /
You can’t perform that action at this time.
0 commit comments