Files
GenAIExamples/AudioQnA/deprecated/docker/Dockerfile_asr
ZePan110 ac89855ff8 Fix code scan warning (#473)
Signed-off-by: zepan <ze.pan@intel.com>
2024-08-02 09:31:30 +08:00

16 lines
253 B
Plaintext

FROM python:3.11-slim
ENV LANG=C.UTF-8
# Install system dependencies
RUN apt-get update \
&& apt-get install -y ffmpeg
COPY ./asr /asr
RUN pip install --no-cache-dir -r /asr/requirements.txt
WORKDIR /asr
ENTRYPOINT ["python", "asr_server.py"]