aboutsummaryrefslogtreecommitdiff
path: root/build-containers/forky
diff options
context:
space:
mode:
Diffstat (limited to 'build-containers/forky')
-rw-r--r--build-containers/forky/Containerfile20
1 files changed, 8 insertions, 12 deletions
diff --git a/build-containers/forky/Containerfile b/build-containers/forky/Containerfile
index 386fe00..ae72361 100644
--- a/build-containers/forky/Containerfile
+++ b/build-containers/forky/Containerfile
@@ -3,13 +3,17 @@ FROM docker.io/library/debian:forky
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
- make \
- clang \
- lld \
- ca-certificates \
+ debhelper-compat \
+ meson \
+ cargo \
+ rustc \
+ desktop-file-utils \
+ appstream-util \
curl \
+ ca-certificates \
tar \
gzip \
+ file \
gettext \
libgtk-4-dev \
libadwaita-1-dev \
@@ -17,11 +21,3 @@ RUN apt-get update && apt-get install -y \
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