forked from jessfraz/dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add gcalcli, itunes, update spotify-wine
Signed-off-by: Jessica Frazelle <[email protected]>
- Loading branch information
Showing
5 changed files
with
38 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,5 @@ znc/conf/ | |
|
||
*.swp | ||
*.swo | ||
|
||
itunes/iTunesSetup.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 not shown.