windows_on_docker/Dockerfile

41 lines
1,016 B
Docker
Raw Normal View History

2024-01-24 22:49:45 +00:00
FROM scratch
2024-05-12 11:49:56 +00:00
COPY --from=qemux/qemu-docker:5.03 / /
2024-01-14 13:41:19 +00:00
2024-05-13 01:52:20 +00:00
ARG VERSION_ARG="0.0"
ARG DEBCONF_NOWARNINGS="yes"
ARG DEBIAN_FRONTEND="noninteractive"
ARG DEBCONF_NONINTERACTIVE_SEEN="true"
2024-01-14 13:41:19 +00:00
2024-05-13 01:52:20 +00:00
RUN set -eu && \
apt-get update && \
apt-get --no-install-recommends -y install \
bc \
2024-01-14 15:40:53 +00:00
curl \
2024-01-18 09:32:39 +00:00
7zip \
2024-02-07 22:48:38 +00:00
wsdd \
samba \
2024-05-04 11:28:12 +00:00
wimtools \
2024-02-07 22:48:38 +00:00
dos2unix \
cabextract \
2024-01-14 19:32:24 +00:00
genisoimage \
libxml2-utils && \
apt-get clean && \
2024-05-13 01:52:20 +00:00
echo "$VERSION_ARG" > /run/version && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2024-01-14 13:41:19 +00:00
2024-05-13 01:52:20 +00:00
COPY --chmod=755 ./src /run/
COPY --chmod=755 ./assets /run/assets
2024-02-12 12:23:12 +00:00
2024-05-13 01:52:20 +00:00
ADD --chmod=755 https://raw.githubusercontent.com/christgau/wsdd/v0.8/src/wsdd.py /usr/sbin/wsdd
ADD --chmod=664 https://github.com/qemus/virtiso/releases/download/v0.1.248/virtio-win-0.1.248.iso /run/drivers.iso
2024-01-14 13:41:19 +00:00
2024-01-17 19:30:52 +00:00
EXPOSE 8006 3389
2024-01-14 13:41:19 +00:00
VOLUME /storage
ENV RAM_SIZE "4G"
2024-01-17 02:40:19 +00:00
ENV CPU_CORES "2"
2024-01-14 13:41:19 +00:00
ENV DISK_SIZE "64G"
ENV VERSION "win11"
2024-01-14 13:41:19 +00:00
2024-01-14 14:19:58 +00:00
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]