SQL_Practice_Platform / Dockerfile
Krishna Prakash
Initial commit For SQL Practice Platform
e7cf806
raw
history blame
179 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY app/ .
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]