windows_arm_on_docker/Dockerfile

42 lines
1 KiB
Docker
Raw Permalink Normal View History

2024-01-24 22:49:45 +00:00
FROM scratch
2024-06-14 01:34:21 +00:00
COPY --from=qemux/qemu-arm:2.10 / /
2024-01-14 13:41:19 +00:00
2024-05-13 01:50:44 +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:50:44 +00:00
RUN set -eu && \
apt-get update && \
apt-get --no-install-recommends -y install \
2024-05-13 01:50:44 +00:00
bc \
2024-01-14 15:40:53 +00:00
curl \
2024-01-18 09:32:39 +00:00
7zip \
2024-02-07 23:03:18 +00:00
wsdd \
samba \
2024-05-27 14:56:22 +00:00
xz-utils \
2024-05-04 12:51:01 +00:00
wimtools \
2024-02-07 23:03:18 +00:00
dos2unix \
2024-02-03 18:40:20 +00:00
cabextract \
2024-01-14 19:32:24 +00:00
genisoimage \
libxml2-utils && \
apt-get clean && \
2024-05-13 01:50:44 +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:50:44 +00:00
COPY --chmod=755 ./src /run/
COPY --chmod=755 ./assets /run/assets
2024-02-12 12:26:48 +00:00
2024-05-13 01:50:44 +00:00
ADD --chmod=755 https://raw.githubusercontent.com/christgau/wsdd/v0.8/src/wsdd.py /usr/sbin/wsdd
2024-05-27 14:56:22 +00:00
ADD --chmod=664 https://github.com/qemus/virtiso-arm/releases/download/v0.1.248/virtio-win-0.1.248.tar.xz /drivers.txz
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"]