sonygod/flash
0
1FROM python:3.9-slim2 3WORKDIR /app4 5COPY ./requirements.txt /app/requirements.txt6COPY ./app.py /app/app.py7 8 9RUN pip install --no-cache-dir -r requirements.txt10 11 12EXPOSE 786013 14CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]