Files

7 lines
207 B
Docker

FROM python:3.12-alpine
RUN pip install --no-cache-dir starlette uvicorn python-multipart
WORKDIR /app
COPY oauth_app.py .
EXPOSE 8080
CMD ["uvicorn", "oauth_app:app", "--host", "0.0.0.0", "--port", "8080"]