mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-22 07:42:32 +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
|
||||
|
||||
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"]
|
||||
CMD ["python", "/bazarr/bazarr.py"]
|
Loading…
Reference in a new issue