All checks were successful
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Successful in 7m54s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / push-archives-to-repo (push) Successful in 59s
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
22 lines
511 B
Docker
22 lines
511 B
Docker
FROM gitea.fithwum.tech/fithwum/debian-base:bullseye
|
|
|
|
ARG VERSION
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
WORKDIR /builder
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
debootstrap wget curl bash ftp-upload dirmngr locales sudo git \
|
|
&& apt-get clean
|
|
|
|
# Setup locale
|
|
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
|
|
locale-gen && \
|
|
update-locale LANG=en_US.UTF-8
|
|
|
|
COPY base-image-script/ base-image-script/
|
|
|
|
RUN chmod +x base-image-script/*.sh
|
|
|
|
# Default command overridden by workflow
|
|
CMD ["bash"]
|