diff --git a/.gitignore b/.gitignore index e1ad643..030d448 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,5 @@ znc/conf/ *.swp *.swo + +itunes/iTunesSetup.exe diff --git a/gcalcli/Dockerfile b/gcalcli/Dockerfile new file mode 100644 index 0000000..b3e5a5c --- /dev/null +++ b/gcalcli/Dockerfile @@ -0,0 +1,13 @@ +FROM python:2.7.8 +MAINTAINER Jessica Frazelle + +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" ] diff --git a/itunes/Dockerfile b/itunes/Dockerfile new file mode 100644 index 0000000..ba1423a --- /dev/null +++ b/itunes/Dockerfile @@ -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 + +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" ] diff --git a/spotify-wine/Dockerfile b/spotify-wine/Dockerfile index 4fc4195..c98cdf4 100644 --- a/spotify-wine/Dockerfile +++ b/spotify-wine/Dockerfile @@ -9,22 +9,11 @@ # --name spotify-wine \ # jess/spotify-wine bash # -FROM debian:jessie +FROM jess/wine MAINTAINER Jessie Frazelle -# 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" ] diff --git a/spotify-wine/SpotifySetup.exe b/spotify-wine/SpotifySetup.exe index 968e9f3..3d929a5 100644 Binary files a/spotify-wine/SpotifySetup.exe and b/spotify-wine/SpotifySetup.exe differ