HPLL-DataReview / Dockerfile
gionuibk's picture
🦆 Switch to Gradio SQL API
3ae41be verified
raw
history blame contribute delete
175 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY sql_api.py .
EXPOSE 7860
CMD ["python", "sql_api.py"]