RoomieMatch / DockerFile
Heerrrs's picture
Added master.py and Dockerfile
ea93dc4
Raw
History Blame Contribute Delete
193 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY master.py /app/
COPY requirements.txt /app/
RUN pip install -r requirements.txt
CMD ["uvicorn", "master:app", "--host", "0.0.0.0", "--port", "7860"]