Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade playground container to Ubuntu 24 #1098

Merged
merged 11 commits into from
Oct 1, 2024
398 changes: 234 additions & 164 deletions compiler/base/Cargo.toml

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions compiler/base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#syntax=docker/dockerfile:1.5

FROM ubuntu:20.04 as toolchain
FROM ubuntu:24.04 as toolchain

ARG channel

Expand All @@ -17,7 +17,6 @@ RUN apt-get update && apt-get install -y \
git \
libssl-dev \
pkg-config \
python \
&& rm -rf /var/lib/apt/lists/*

RUN useradd -m playground -d /playground
Expand Down
Loading