File tree 2 files changed +10
-9
lines changed
2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 12
12
FROM r.j3ss.co/wine
13
13
LABEL maintainer
"Jessie Frazelle <[email protected] >"
14
14
15
- ADD https://desktop.figma.com/win/FigmaSetup.exe /usr/src/FigmaSetup.exe
16
-
17
15
ENV HOME /home/user
18
16
RUN useradd --create-home --home-dir $HOME user \
19
- && chown -R user:user $ HOME \
20
- && chown user:user /usr/src/FigmaSetup.exe
17
+ && curl -sSL "https://desktop.figma.com/win/FigmaSetup.exe" > ${ HOME}/FigmaSetup.exe \
18
+ && chown -R user:user $HOME
21
19
22
20
WORKDIR $HOME
23
21
USER user
24
22
25
- RUN echo "wine /usr/src/ FigmaSetup.exe" > /home/user/.bash_history
23
+ RUN echo "wine runas /trustlevel:0x20000 FigmaSetup.exe" > /home/user/.bash_history
26
24
RUN echo "winetricks dotnet45" >> /home/user/.bash_history
27
25
RUN echo "winecfg" >> /home/user/.bash_history
28
26
Original file line number Diff line number Diff line change 5
5
# install wine
6
6
RUN echo "deb http://deb.debian.org/debian sid main contrib" > /etc/apt/sources.list \
7
7
&& apt-get update && apt-get install -y \
8
+ apt-transport-https \
8
9
cabextract \
9
10
ca-certificates \
11
+ curl \
12
+ gnupg2 \
10
13
fonts-wine \
11
- wine \
12
14
winetricks \
13
15
--no-install-recommends && \
14
- dpkg --add-architecture i386 && \
16
+ curl -sSL "https://dl.winehq.org/wine-builds/winehq.key" | apt-key add - \
17
+ && echo "deb https://dl.winehq.org/wine-builds/debian/ bullseye main" >> /etc/apt/sources.list \
18
+ && dpkg --add-architecture i386 && \
15
19
apt-get update && \
16
20
apt-get install -y \
17
21
libwine \
18
- wine32 \
19
- wine64 \
22
+ winehq-staging \
20
23
--no-install-recommends \
21
24
&& rm -rf /var/lib/apt/lists/*
22
25
You can’t perform that action at this time.
0 commit comments