File size: 325 Bytes
3d4271b f77e581 3d4271b f77e581 3d4271b f77e581 3d4271b f77e581 3d4271b f77e581 3d4271b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | FROM python:3.9-slim
WORKDIR /app
# Install requirements
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy all files
COPY . .
# Make start.sh executable
RUN chmod +x start.sh
EXPOSE 8000
EXPOSE 7860
# Run the startup script which handles both SQLite server and FastAPI
CMD ["./start.sh"] |