Skip to content

Commit

Permalink
build: Install wimtools from bookworm (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Mar 25, 2024
1 parent 500792e commit d977ddb
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
FROM scratch
COPY --from=qemux/qemu-arm:1.06 / /
COPY --from=qemux/qemu-arm:1.07 / /

ARG DEBCONF_NOWARNINGS "yes"
ARG DEBIAN_FRONTEND "noninteractive"
ARG DEBCONF_NONINTERACTIVE_SEEN "true"

RUN apt-get update \
&& apt-get --no-install-recommends -y install \
RUN apt-get update && \
apt-get --no-install-recommends -y install \
curl \
7zip \
wsdd \
samba \
wimtools \
dos2unix \
cabextract \
genisoimage \
libxml2-utils \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
libxml2-utils && \
echo "deb http://deb.debian.org/debian/ bookworm main" >> /etc/apt/sources.list.d/bookworm.list && \
apt-get update && \
apt-get -t bookworm --no-install-recommends -y install wimtools && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

COPY ./src /run/
COPY ./assets /run/assets
Expand Down

0 comments on commit d977ddb

Please sign in to comment.