mirror of
https://github.com/wcbing/wcbing-apt-repo.git
synced 2025-12-29 02:28:30 +08:00
17 lines
287 B
Docker
17 lines
287 B
Docker
FROM debian:12-slim
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
apt-utils \
|
|
python3-apt \
|
|
python3-requests \
|
|
curl \
|
|
jq \
|
|
gpg \
|
|
gpg-agent && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /mnt
|
|
|
|
CMD ["/bin/bash"] |