From e53d64c7af27634b30ac96216a98b95010538591 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Wed, 21 Oct 2015 23:07:00 -0700 Subject: [PATCH] add couchpotato Signed-off-by: Jessica Frazelle --- couchpotato/Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 couchpotato/Dockerfile diff --git a/couchpotato/Dockerfile b/couchpotato/Dockerfile new file mode 100644 index 0000000..5d36821 --- /dev/null +++ b/couchpotato/Dockerfile @@ -0,0 +1,30 @@ +# Couchpotato in a container +# +# docker run -d \ +# --restart always \ +# -p 5050:5050 \ +# -v /etc/localtime:/etc/localtime:ro \ +# -v /volumes/couchpotato:/data \ +# --name couchpotato \ +# jess/couchpotato +# +FROM debian:sid +MAINTAINER Jessica Frazelle + + +RUN apt-get update && apt-get install -y \ + ca-certificates \ + git \ + python \ + python-lxml \ + python-openssl \ + && rm -rf /var/lib/apt/lists/* + +EXPOSE 5050 + +RUN git clone https://github.com/RuudBurger/CouchPotatoServer.git /usr/src/couchpotato + +WORKDIR /usr/src/couchpotato + +ENTRYPOINT [ "python", "CouchPotato.py", "--debug" ] +CMD [ "--data_dir", "/data" ]