mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-25 01:02:19 +00:00
Use absolute path
This commit is contained in:
parent
ded69fe6e7
commit
4a4a0fac62
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
||||||
FROM lsiobase/alpine.python
|
FROM lsiobase/alpine.python
|
||||||
|
|
||||||
EXPOSE 6767
|
EXPOSE 6767
|
||||||
VOLUME /tv /bazarr/data
|
|
||||||
|
|
||||||
# Update
|
# Update
|
||||||
RUN apk add --update build-base python-dev py2-pip py-setuptools jpeg-dev zlib-dev git
|
RUN apk add --update build-base python-dev py2-pip py-setuptools jpeg-dev zlib-dev git
|
||||||
|
@ -12,5 +11,6 @@ RUN git clone -b master --single-branch https://github.com/morpheus65535/bazarr.
|
||||||
# Install app dependencies
|
# Install app dependencies
|
||||||
RUN pip install -r /bazarr/requirements.txt
|
RUN pip install -r /bazarr/requirements.txt
|
||||||
|
|
||||||
WORKDIR /bazarr
|
VOLUME /tv /bazarr/data
|
||||||
CMD ["python", "bazarr.py"]
|
|
||||||
|
CMD ["python", "/bazarr/bazarr.py"]
|
Loading…
Reference in a new issue