mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
add gcalcli, itunes, update spotify-wine
Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
parent
80f5c4b6cd
commit
c510726bc1
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -27,3 +27,5 @@ znc/conf/
|
|||
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
itunes/iTunesSetup.exe
|
||||
|
|
13
gcalcli/Dockerfile
Normal file
13
gcalcli/Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM python:2.7.8
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
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
itunes/Dockerfile
Normal file
19
itunes/Dockerfile
Normal file
|
@ -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 <jess@linux.com>
|
||||
|
||||
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" ]
|
|
@ -9,22 +9,11 @@
|
|||
# --name spotify-wine \
|
||||
# jess/spotify-wine bash
|
||||
#
|
||||
FROM debian:jessie
|
||||
FROM jess/wine
|
||||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||
|
||||
# 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" ]
|
||||
|
|
Loading…
Reference in New Issue
Block a user