mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-11 13:08:35 +03:00
13 lines
246 B
Docker
13 lines
246 B
Docker
FROM python:3.10 AS compile-image
|
|
|
|
WORKDIR /code
|
|
|
|
COPY pyproject.toml .
|
|
RUN pip install --no-cache-dir --user .[web]
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
ENV PATH=/root/.local/bin:$PATH
|
|
|
|
ENTRYPOINT ["bash", "./app/web/start.sh"]
|