mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-10 16:57:45 +08:00
Change to Dockerfile to remove installation of requirements.txt
This commit is contained in:
parent
90cee1ce9b
commit
807bf4ec67
4 changed files with 8 additions and 20 deletions
|
@ -6,11 +6,8 @@ ENV PYTHONIOENCODING="UTF-8"
|
|||
VOLUME /tv
|
||||
VOLUME /movies
|
||||
|
||||
RUN apk add --update git py-pip jpeg-dev && \
|
||||
apk add --update --virtual build-dependencies build-base python-dev libffi-dev zlib-dev && \
|
||||
git clone https://github.com/morpheus65535/bazarr.git /bazarr && \
|
||||
pip install -r /bazarr/requirements.txt && \
|
||||
apk del --purge build-dependencies
|
||||
RUN apk add --update git py-pip && \
|
||||
git clone https://github.com/morpheus65535/bazarr.git /bazarr
|
||||
|
||||
VOLUME /bazarr/data
|
||||
|
||||
|
|
|
@ -6,11 +6,8 @@ ENV PYTHONIOENCODING="UTF-8"
|
|||
VOLUME /tv
|
||||
VOLUME /movies
|
||||
|
||||
RUN apk add --update git py-pip jpeg-dev && \
|
||||
apk add --update --virtual build-dependencies build-base python-dev libffi-dev zlib-dev && \
|
||||
git clone https://github.com/morpheus65535/bazarr.git /bazarr && \
|
||||
pip install -r /bazarr/requirements.txt && \
|
||||
apk del --purge build-dependencies
|
||||
RUN apk add --update git py-pip && \
|
||||
git clone https://github.com/morpheus65535/bazarr.git /bazarr
|
||||
|
||||
VOLUME /bazarr/data
|
||||
|
||||
|
|
|
@ -8,11 +8,8 @@ ADD qemu-aarch64-static /usr/bin
|
|||
VOLUME /tv
|
||||
VOLUME /movies
|
||||
|
||||
RUN apk add --update git py-pip jpeg-dev && \
|
||||
apk add --update --virtual build-dependencies build-base python-dev libffi-dev zlib-dev && \
|
||||
git clone https://github.com/morpheus65535/bazarr.git /bazarr && \
|
||||
pip install -r /bazarr/requirements.txt && \
|
||||
apk del --purge build-dependencies
|
||||
RUN apk add --update git py-pip && \
|
||||
git clone https://github.com/morpheus65535/bazarr.git /bazarr
|
||||
|
||||
VOLUME /bazarr/data
|
||||
|
||||
|
|
|
@ -8,11 +8,8 @@ ADD qemu-arm-static /usr/bin
|
|||
VOLUME /tv
|
||||
VOLUME /movies
|
||||
|
||||
RUN apk add --update git py-pip jpeg-dev && \
|
||||
apk add --update --virtual build-dependencies build-base python-dev libffi-dev zlib-dev && \
|
||||
git clone https://github.com/morpheus65535/bazarr.git /bazarr && \
|
||||
pip install -r /bazarr/requirements.txt && \
|
||||
apk del --purge build-dependencies
|
||||
RUN apk add --update git py-pip && \
|
||||
git clone https://github.com/morpheus65535/bazarr.git /bazarr
|
||||
|
||||
VOLUME /bazarr/data
|
||||
|
||||
|
|
Loading…
Reference in a new issue