-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathDockerfile
More file actions
48 lines (38 loc) · 1.52 KB
/
Copy pathDockerfile
File metadata and controls
48 lines (38 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# syntax=docker/dockerfile:1
FROM scratch
COPY --from=qemux/qemu-arm:7.32 / /
ARG TARGETARCH
ARG VERSION_ARG="0.00"
ARG VERSION_WSDD="1.25"
ARG VERSION_VIRTIO="0.1.285"
ARG DEBCONF_NOWARNINGS="yes"
ARG DEBIAN_FRONTEND="noninteractive"
ARG DEBCONF_NONINTERACTIVE_SEEN="true"
RUN set -eu && \
apt-get update && \
apt-get --no-install-recommends -y install \
samba \
wimtools \
dos2unix \
cabextract \
libxml2-utils \
libarchive-tools && \
wget "https://github.com/gershnik/wsdd-native/releases/download/v${VERSION_WSDD}/wsddn_${VERSION_WSDD}_${TARGETARCH}.deb" -O /tmp/wsddn.deb -q --timeout=10 && \
dpkg -i /tmp/wsddn.deb && \
apt-get clean && \
echo "$VERSION_ARG" > /etc/version && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY --chmod=755 ./src /run/
COPY --chmod=755 ./assets /run/assets
ADD --chmod=755 https://raw.githubusercontent.com/dockur/windows/master/src/mido.sh /run/
ADD --chmod=755 https://raw.githubusercontent.com/dockur/windows/master/src/power.sh /run/
ADD --chmod=755 https://raw.githubusercontent.com/dockur/windows/master/src/samba.sh /run/
ADD --chmod=755 https://raw.githubusercontent.com/dockur/windows/master/src/install.sh /run/
ADD --chmod=664 https://github.com/qemus/virtiso-arm/releases/download/v${VERSION_VIRTIO}-1/virtio-win-${VERSION_VIRTIO}.tar.xz /var/drivers.txz
VOLUME /storage
EXPOSE 3389 8006
ENV VERSION="11"
ENV RAM_SIZE="4G"
ENV CPU_CORES="2"
ENV DISK_SIZE="64G"
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]