From 1ac0d4cd5d868e6093ae1ae437c271e163807e5e Mon Sep 17 00:00:00 2001 From: Jean Froment Date: Sat, 12 Aug 2017 17:24:56 +0200 Subject: [PATCH] Forgot Dockerfile save --- Dockerfiles/couchpotato/Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Dockerfiles/couchpotato/Dockerfile b/Dockerfiles/couchpotato/Dockerfile index e69de29..b4ebe86 100644 --- a/Dockerfiles/couchpotato/Dockerfile +++ b/Dockerfiles/couchpotato/Dockerfile @@ -0,0 +1,17 @@ +FROM lsiobase/alpine.python:3.6 +MAINTAINER fromenje + +# set python to use utf-8 rather than ascii. +ENV PYTHONIOENCODING="UTF-8" + +# install app +RUN \ + git clone --depth 1 https://github.com/CouchPotato/CouchPotatoServer /app/couchpotato + +# add local files +COPY root/ / + +# ports and volumes +EXPOSE 5050 +WORKDIR /app/couchpotato +VOLUME /config /downloads /movies