figma wine

Signed-off-by: Jess Frazelle <jess@oxide.computer>
This commit is contained in:
Jess Frazelle 2020-03-13 09:11:17 -07:00
parent e7689627f8
commit ca56f0bb5a
No known key found for this signature in database
GPG Key ID: 4BB1599E1A3071F2

19
figma-wine/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
# Run figma windows app in a container with wine
#
# docker run --rm -it \
# -v /etc/localtime:/etc/localtime:ro \
# --cpuset-cpus 0 \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# --device /dev/snd:/dev/snd \
# --name figma-wine \
# jess/figma-wine bash
#
FROM r.j3ss.co/wine
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
ADD https://desktop.figma.com/win/FigmaSetup.exe /usr/src/FigmaSetup.exe
RUN echo "wine /usr/src/FigmaSetup.exe" > /root/.bash_history
CMD [ "bash" ]