Skip to content

Commit

Permalink
add gcalcli, itunes, update spotify-wine
Browse files Browse the repository at this point in the history
Signed-off-by: Jessica Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Jun 9, 2015
1 parent cfda64c commit 6943918
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 15 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ znc/conf/

*.swp
*.swo

itunes/iTunesSetup.exe
13 changes: 13 additions & 0 deletions gcalcli/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:2.7.8
MAINTAINER Jessica Frazelle <[email protected]>

ENV HOME /home/gcalcli
RUN useradd --create-home --home-dir $HOME gcalcli \
&& chown -R gcalcli:gcalcli $HOME

RUN pip install vobject parsedatetime gcalcli

WORKDIR $HOME
USER gcalcli

ENTRYPOINT [ "/usr/local/bin/gcalcli" ]
19 changes: 19 additions & 0 deletions itunes/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Run itunes 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 itunes \
# jess/itunes bash
#
FROM jess/wine
MAINTAINER Jessie Frazelle <[email protected]>

ADD https://jesss.s3.amazonaws.com/binaries/iTunesSetup.exe /usr/src/iTunesSetup.exe

RUN echo "wine /usr/src/iTunesSetup.exe" > /root/.bash_history

CMD [ "bash" ]
19 changes: 4 additions & 15 deletions spotify-wine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,11 @@
# --name spotify-wine \
# jess/spotify-wine bash
#
FROM debian:jessie
FROM jess/wine
MAINTAINER Jessie Frazelle <[email protected]>

# install wine
# and iceweasel since we have to sign in w facebook
# GROSS
RUN apt-get update && apt-get install -y \
wine \
--no-install-recommends && \
dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y \
wine32 \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
COPY SpotifySetup.exe /usr/src/SpotifySetup.exe

COPY ./SpotifySetup.exe /usr/src/SpotifySetup.exe
RUN echo "wine /usr/src/SpotifySetup.exe" > /root/.bash_history

CMD [ "wine", "/usr/src/SpotifySetup.exe" ]
CMD [ "bash" ]
Binary file modified spotify-wine/SpotifySetup.exe
Binary file not shown.

0 comments on commit 6943918

Please sign in to comment.