mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-22 15:54:26 +00:00
Dockerfile update
This commit is contained in:
parent
4303388826
commit
bd2d92a625
1 changed files with 6 additions and 2 deletions
|
@ -1,10 +1,14 @@
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
||||||
|
EXPOSE 6767
|
||||||
|
VOLUME /bazarr
|
||||||
|
|
||||||
|
WORKDIR /bazarr
|
||||||
|
|
||||||
# Update
|
# Update
|
||||||
RUN apk add --update python py-pip
|
RUN apk add --update python py-pip
|
||||||
|
|
||||||
# Install app dependencies
|
# Install app dependencies
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
EXPOSE 6767
|
CMD ["python", "/bazarr/bazarr.py"]
|
||||||
CMD ["python", "/src/bazarr.py"]
|
|
Loading…
Reference in a new issue