diff --git a/wine/Dockerfile b/wine/Dockerfile deleted file mode 100644 index 3374e63..0000000 --- a/wine/Dockerfile +++ /dev/null @@ -1,25 +0,0 @@ -# -# Dockerfile for wine -# - -FROM jess/wine -MAINTAINER kev - -ADD Songti.ttc /usr/share/fonts/ - -RUN apt-get update -RUN apt-get install -y locales libfontconfig1 libfreetype6 fontconfig libicu52 -RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen -RUN echo 'zh_CN.UTF-8 UTF-8' >> /etc/locale.gen -RUN locale-gen -RUN fc-cache -v -f -RUN useradd -m -s /bin/bash wine - -ENV HOME /home/wine -ENV LANG en_US.UTF-8 - -USER wine -VOLUME $HOME -WORKDIR $HOME - -CMD ["bash"] diff --git a/wine/docker-compose.yml b/wine/docker-compose.yml deleted file mode 100644 index bfdc8fb..0000000 --- a/wine/docker-compose.yml +++ /dev/null @@ -1,13 +0,0 @@ -wine: - build: . - command: wine SpotifySetup.exe - user: wine - volumes: - - .:/home/wine - - /etc/localtime:/etc/localtime:ro - - /tmp/.X11-unix:/tmp/.X11-unix - environment: - - DISPLAY=:0 - devices: - - /dev/snd - - /dev/dri