1
0
mirror of synced 2024-11-14 18:57:39 +01:00
Retrieval-based-Voice-Conve.../Dockerfile
Sebastian Gabriel Savu d43c1d3cdd
add ability to containerize with Docker (add Dockerfile) (#240)
Co-authored-by: Sebastian Savu <sebastian.savu@bidfx.com>
2023-05-07 13:32:16 +08:00

13 lines
163 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.10-bullseye
EXPOSE 7865
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
CMD ["python3", "infer-web.py"]