mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-07 19:18:35 +03:00
14 lines
248 B
Docker
14 lines
248 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /code
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# Install dependencies
|
|
COPY pyproject.toml .
|
|
RUN pip install -U pip
|
|
RUN pip install .[test]
|
|
|
|
# The source code is mounted as a volume at /code, no need to copy.
|