mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
ca56f0bb5a
Signed-off-by: Jess Frazelle <jess@oxide.computer>
20 lines
504 B
Docker
20 lines
504 B
Docker
# 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" ]
|