Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Successful in 4m11s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / push-archives-to-repo (push) Failing after 29s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (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
14 lines
317 B
Docker
14 lines
317 B
Docker
FROM gitea.fithwum.tech/fithwum/debian-base:bullseye
|
|
|
|
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"]
|