first commit from PC

This commit is contained in:
2025-07-20 13:28:12 +10:00
parent a2971879f0
commit a27c86ffe9
42 changed files with 1551 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
FROM debian
ENV DEBIAN_FRONTEND=noninteractive
ENV WINEARCH=win32
ENV WINEPREFIX=~/.msoffice
RUN dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y wget gcc make perl && \
apt install -y software-properties-common && \
mkdir -pm755 /etc/apt/keyrings && \
wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key && \
wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bullseye/winehq-bullseye.sources && \
apt-get update && \
apt-get install -y --install-recommends winehq-stable && \
apt-get update && \
apt-get install -y winetricks winbind samba smbclient winetricks
RUN mkdir ~/.msoffice
RUN wineboot -i
RUN winetricks cmd corefonts msxml6 riched20 gdiplus
COPY /root/Nextcloud/OfficeSetup.exe /
RUN wine /OfficeSetup.exe