dfgsdfgdfg
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Failing after 10s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / push-archives-to-repo (push) Has been skipped
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

This commit is contained in:
2025-07-07 20:15:46 -07:00
parent 4ec359f531
commit b23aff75b3
3 changed files with 48 additions and 54 deletions

View File

@@ -5,17 +5,10 @@ ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /builder
RUN apt-get update && apt-get install -y \
debootstrap wget curl bash ftp-upload dirmngr locales sudo git \
debootstrap wget curl bash ftp-upload dirmngr locales sudo git bzip2 \
&& 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/ /scripts/
RUN chmod +x /scripts/*.sh
COPY base-image-script/ base-image-script/
RUN chmod +x base-image-script/*.sh
# Default command overridden by workflow
CMD ["bash"]