Files
pipecat/examples/daily-multi-translation/Dockerfile
2025-05-01 19:11:13 -07:00

16 lines
224 B
Docker

FROM python:3.10-bullseye
RUN mkdir /app
RUN mkdir /app/assets
RUN mkdir /app/utils
COPY *.py /app/
COPY requirements.txt /app/
WORKDIR /app
RUN pip3 install -r requirements.txt
EXPOSE 7860
CMD ["python3", "server.py"]