diff --git a/Dockerfile b/Dockerfile index 2645cb9ac..708fa0427 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,14 @@ FROM alpine:latest +EXPOSE 6767 +VOLUME /bazarr + +WORKDIR /bazarr + # Update RUN apk add --update python py-pip # Install app dependencies RUN pip install -r requirements.txt -EXPOSE 6767 -CMD ["python", "/src/bazarr.py"] \ No newline at end of file +CMD ["python", "/bazarr/bazarr.py"] \ No newline at end of file