Spaces:
Build error
Build error
File size: 332 Bytes
02dca0a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN apt-get -y update
RUN apt-get -y upgrade
# Install every package one after another to track time
RUN python -m pip install --upgrade pip
RUN pip install -r requirements.txt
CMD ["python", "./Interface.py"]
# Next commands are: docker build -t pustozerov/poc-call-transcription:1.0
|