filter-message / Dockerfile
vivekbeast's picture
Fix sdk in config
d1f6743
Raw
History Blame Contribute Delete
174 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]