aboutsummaryrefslogtreecommitdiff
path: root/build-containers/bookworm/Containerfile
diff options
context:
space:
mode:
Diffstat (limited to 'build-containers/bookworm/Containerfile')
-rw-r--r--build-containers/bookworm/Containerfile26
1 files changed, 0 insertions, 26 deletions
diff --git a/build-containers/bookworm/Containerfile b/build-containers/bookworm/Containerfile
deleted file mode 100644
index 852e2e8..0000000
--- a/build-containers/bookworm/Containerfile
+++ /dev/null
@@ -1,26 +0,0 @@
-FROM docker.io/library/debian:bookworm
-
-ENV DEBIAN_FRONTEND=noninteractive
-
-RUN apt-get update && apt-get install -y \
- make \
- clang \
- lld \
- curl \
- tar \
- gzip \
- gettext \
- libgtk-4-dev \
- libadwaita-1-dev \
- libgtksourceview-5-dev \
- pkg-config \
- && apt-get clean \
- && rm -rf /var/lib/apt/lists/*
-
-# Install rust toolchain
-RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
-ENV PATH="/root/.cargo/bin:${PATH}"
-
-# Install cargo-deb
-RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash \
- && cargo binstall cargo-deb --no-confirm