0efef82af8
- Refactor build script - Add python script to check if package exists in apt repo - Refactor woodpecker-ci config - Update makedeb
11 lines
266 B
Plaintext
11 lines
266 B
Plaintext
FROM debian:bookworm-slim
|
|
|
|
RUN true \
|
|
&& apt update \
|
|
&& apt install --yes \
|
|
curl fakeroot ca-certificates gettext \
|
|
git binutils xz-utils bzip2 zstd unzip \
|
|
python3 \
|
|
&& apt clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|