Move buscribe/buscribe to buscribe/ and everything else to buscribe-remainder/

And make buscribe buildable using ./build
pull/414/head
Mike Lang 1 month ago
parent bcf585776e
commit d5caace905

@ -13,6 +13,7 @@ cd "$(dirname "$(realpath "$0")")"
# The different images we can build # The different images we can build
COMPONENTS=( COMPONENTS=(
backfiller backfiller
buscribe
buscribe-api buscribe-api
chat_archiver chat_archiver
cutter cutter

@ -17,7 +17,7 @@ RUN cd /tmp \
COPY common /tmp/common COPY common /tmp/common
RUN pip install /tmp/common && rm -r /tmp/common RUN pip install /tmp/common && rm -r /tmp/common
COPY buscribe/buscribe /tmp/buscribe COPY buscribe /tmp/buscribe
RUN pip install /tmp/buscribe && rm -r /tmp/buscribe RUN pip install /tmp/buscribe && rm -r /tmp/buscribe
ENTRYPOINT ["python3", "-m", "buscribe", "--base-dir", "/mnt"] ENTRYPOINT ["python3", "-m", "buscribe", "--base-dir", "/mnt"]
Loading…
Cancel
Save