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