Files
debian-base/Dockerfile
fithwum 64daf2db48
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-rootfs-archives (push) Failing after 8m55s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build & Push Docker Images (bookworm) (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build & Push Docker Images (bullseye) (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / Build & Push Docker Images (trixie) (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Has been skipped
test fix
2025-12-20 11:04:54 -08:00

17 lines
384 B
Docker

# FROM gitea.fithwum.tech/fithwum/debian-base:bullseye
FROM debian:latest
ARG VERSION
ENV VERSION=${VERSION}
ENV OUTPUT_DIR=/output
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
debootstrap wget curl bash ftp-upload dirmngr locales sudo git bzip2 \
&& apt-get clean
COPY base-image-script/ /scripts/
RUN chmod +x /scripts/*.sh
CMD ["bash"]