10 lines
175 B
Docker
10 lines
175 B
Docker
FROM python:3.10.6
|
|
LABEL authors="dmitrium12"
|
|
|
|
WORKDIR /audio_resive
|
|
COPY . .
|
|
|
|
RUN pip3 install -U pip
|
|
RUN pip3 install -r requirements.txt
|
|
RUN pip3 install -U openai-whisper
|