sql_data_analyst / Dockerfile
YashashMathur's picture
SQL Data Analyst OpenEnv - Initial commit
d103a0f verified
raw
history blame
318 Bytes
FROM python:3.11-slim
WORKDIR /app
# Install dependencies
RUN pip install --no-cache-dir \
pydantic>=2.0 \
fastapi>=0.100 \
uvicorn>=0.20 \
openai>=1.0 \
faker>=18.0 \
pytest>=7.0
COPY . .
EXPOSE 7860
CMD ["python", "-m", "uvicorn", "env.server:app", "--host", "0.0.0.0", "--port", "7860"]