feat: install api python package inside docker
This mainly allow users to use the `funkwhale-manage` entrypoint.
This commit is contained in:
parent
64f54fa709
commit
0b4319656a
|
@ -102,6 +102,9 @@ RUN apk add --no-cache \
|
||||||
COPY . /app
|
COPY . /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN set -eux; \
|
||||||
|
pip3 install --no-deps --editable .
|
||||||
|
|
||||||
ENV CACHE_URL="redis://redis:6379/0"
|
ENV CACHE_URL="redis://redis:6379/0"
|
||||||
ENV CELERY_BROKER_URL="redis://redis:6379/0"
|
ENV CELERY_BROKER_URL="redis://redis:6379/0"
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Install API python package in docker image
|
Loading…
Reference in New Issue