You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
440 B
Docker

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

FROM lsiobase/alpine.python:3.6
MAINTAINER Michael Reber
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Version:- ${VERSION} Build-date:- ${BUILD_DATE}"
# set python to use utf-8 rather than ascii
ENV PYTHONIOENCODING="UTF-8"
# install app
RUN \
git clone --depth=1 https://github.com/cytec/SickRage.git /app/sickrage
# copy local files
COPY root/ /
# ports and volumes
EXPOSE 8081
VOLUME /config /downloads /tv