Files
debian-base/Dockerfile
fithwum 479b2b1f03
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-rootfs-archives (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Has been cancelled
fghdfgh
2025-07-09 17:03:49 -07:00

15 lines
338 B
Docker

# FROM gitea.fithwum.tech/fithwum/debian-base:bullseye
FROM debian:latest
ARG VERSION
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"]