mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
29 lines
507 B
Docker
29 lines
507 B
Docker
ARG SUITE=trixie
|
|
|
|
FROM debian:${SUITE}
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && \
|
|
apt-get install -yq \
|
|
live-build \
|
|
procps \
|
|
binfmt-support \
|
|
qemu-utils \
|
|
qemu-user-static \
|
|
xorriso \
|
|
isolinux \
|
|
ca-certificates \
|
|
curl \
|
|
wget \
|
|
gpg \
|
|
fdisk \
|
|
dosfstools \
|
|
e2fsprogs \
|
|
squashfs-tools \
|
|
rsync \
|
|
b3sum \
|
|
dpkg-dev
|
|
RUN echo 'retry_connrefused = on' > /etc/wgetrc && \
|
|
echo 'tries = 100' >> /etc/wgetrc
|
|
|
|
WORKDIR /root |