sc-likes-to-code/openenv-customer-support-env
0
1FROM python:3.102 3WORKDIR /app4 5COPY . .6 7RUN pip install --no-cache-dir -r requirements.txt8 9ENV PYTHONPATH=/app10 11EXPOSE 786012 13CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]