mobixconsulting/eatc-class5
0
1FROM python:3.9-slim2 3WORKDIR /app4 5COPY . .6 7RUN pip install --no-cache-dir -r requirements.txt8 9EXPOSE 786010 11CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]12 1FROM python:3.9-slim2 3WORKDIR /app4 5COPY . .6 7RUN pip install --no-cache-dir -r requirements.txt8 9EXPOSE 786010 11CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]12