mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-13 01:14:38 +08:00
10 lines
No EOL
174 B
Docker
10 lines
No EOL
174 B
Docker
FROM alpine:latest
|
|
|
|
# Update
|
|
RUN apk add --update python py-pip
|
|
|
|
# Install app dependencies
|
|
RUN pip install -r requirements.txt
|
|
|
|
EXPOSE 6767
|
|
CMD ["python", "/src/bazarr.py"] |