Spaces:
Running
Running
File size: 190 Bytes
2731e83 |
1 2 3 4 5 6 |
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY payment_api.py .
CMD ["uvicorn", "payment_api:app", "--host", "0.0.0.0", "--port", "7860"] |