feat: install api python package inside docker

This mainly allow users to use the `funkwhale-manage` entrypoint.
This commit is contained in:
jo 2023-01-11 16:45:20 +01:00
parent 64f54fa709
commit 0b4319656a
No known key found for this signature in database
GPG Key ID: B2FEC9B22722B984
2 changed files with 4 additions and 0 deletions

View File

@ -102,6 +102,9 @@ RUN apk add --no-cache \
COPY . /app
WORKDIR /app
RUN set -eux; \
pip3 install --no-deps --editable .
ENV CACHE_URL="redis://redis:6379/0"
ENV CELERY_BROKER_URL="redis://redis:6379/0"

View File

@ -0,0 +1 @@
Install API python package in docker image