feat: use official whisper pypy package

This commit is contained in:
Felix Spöttel
2023-01-18 12:35:19 +01:00
parent 7b6b453b45
commit 3f734468e1
3 changed files with 13 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
FROM python:3.11 AS compile-image
FROM python:3.10 AS compile-image
COPY pyproject.toml .
RUN pip install --user .[test]
RUN pip install --user .[test,web]
FROM python:3.11 AS build-image
FROM python:3.10 AS build-image
WORKDIR /code