Devashish-Nagpal's picture
Fix SQLite dependency issue in Docker
657c6c7
raw
history blame
302 Bytes
FROM python:3.9-slim
WORKDIR /app
RUN apt-get update && \
apt-get install -y --no-install-recommends gcc python3-dev sqlite3 && \
rm- rf /var/lib/apt/lists/*
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "app.main:app"]