Skip to content

Instantly share code, notes, and snippets.

@romuloctba
Created November 29, 2018 01:51
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save romuloctba/273c6553f682593d3bbce1a80d65d925 to your computer and use it in GitHub Desktop.
Save romuloctba/273c6553f682593d3bbce1a80d65d925 to your computer and use it in GitHub Desktop.
Photoshop on Docker
# docker run -it \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -v $HOME:/workspace \
# -e DISPLAY=$DISPLAY \
# --privileged
# photoshop
#
FROM jess/wine
MAINTAINER Jonathan Gautheron <jgautheron@neverblend.in>
RUN apt-get update -qq && \
apt-get install -yqq wget ca-certificates cabextract --no-install-recommends
RUN wget -O /usr/bin/winetricks https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks \
&& chmod +x /usr/bin/winetricks
ADD PhotoshopPortable /usr/src/Photoshop
# Photoshop CS2 dependencies
# https://appdb.winehq.org/objectManager.php?sClass=version&iId=2631
RUN echo "/usr/bin/winetricks corefonts vcrun6 && wine /usr/src/Photoshop/Photoshop.exe"
CMD [ "bash" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment