mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-07 23:37:58 +08:00
14 lines
No EOL
210 B
Docker
14 lines
No EOL
210 B
Docker
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
|
|
|
|
CMD ["python", "/bazarr/bazarr.py"] |