windows/Dockerfile

46 lines
1.3 KiB
Docker
Raw Normal View History

2024-01-24 23:49:45 +01:00
FROM scratch
COPY --from=qemux/qemu-docker:4.25 / /
2024-01-14 14:41:19 +01:00
ARG DEBCONF_NOWARNINGS "yes"
2024-01-14 14:41:19 +01:00
ARG DEBIAN_FRONTEND "noninteractive"
ARG DEBCONF_NONINTERACTIVE_SEEN "true"
RUN apt-get update && \
apt-get --no-install-recommends -y install \
bc \
2024-01-14 16:40:53 +01:00
curl \
2024-01-18 10:32:39 +01:00
7zip \
2024-02-07 23:48:38 +01:00
wsdd \
samba \
dos2unix \
cabextract \
2024-01-14 20:32:24 +01:00
genisoimage \
libxml2-utils && \
echo "deb http://deb.debian.org/debian/ sid main" >> /etc/apt/sources.list.d/sid.list && \
echo -e "Package: *\nPin: release n=trixie\nPin-Priority: 900\nPackage: *\nPin: release n=sid\nPin-Priority: 400" | tee /etc/apt/preferences.d/preferences > /dev/null && \
apt-get update && \
apt-get -t sid --no-install-recommends -y install wimtools && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2024-01-14 14:41:19 +01:00
COPY ./src /run/
2024-01-15 23:45:35 +01:00
COPY ./assets /run/assets
2024-02-12 13:23:12 +01:00
2024-03-31 04:45:27 +02:00
ADD https://raw.githubusercontent.com/christgau/wsdd/v0.8/src/wsdd.py /usr/sbin/wsdd
ADD https://github.com/qemus/virtiso/releases/download/v0.1.248/virtio-win-0.1.248.iso /run/drivers.iso
2024-02-12 13:23:12 +01:00
RUN chmod +x /run/*.sh && chmod +x /usr/sbin/wsdd
2024-01-14 14:41:19 +01:00
2024-01-17 20:30:52 +01:00
EXPOSE 8006 3389
2024-01-14 14:41:19 +01:00
VOLUME /storage
ENV RAM_SIZE "4G"
2024-01-17 03:40:19 +01:00
ENV CPU_CORES "2"
2024-01-14 14:41:19 +01:00
ENV DISK_SIZE "64G"
ENV VERSION "win11"
2024-01-14 14:41:19 +01:00
ARG VERSION_ARG "0.0"
RUN echo "$VERSION_ARG" > /run/version
2024-01-14 15:19:58 +01:00
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]