File size: 1,117 Bytes
6e648e8 6ee8a0e d7a612a 6ee8a0e 6e648e8 d7a612a 6e648e8 984f571 47e3987 d7a612a 984f571 d7a612a 6e648e8 9c9adeb 6e648e8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# Use an official Python runtime as a parent image
FROM python:3.9-slim
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
python3-dev \
wget \
&& rm -rf /var/lib/apt/lists
# Create non-root user
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
# Set environment variables
ENV PYTHONUNBUFFERED=1
ENV PYTHONIOENCODING=UTF-8
# Install Python dependencies in layers for better caching
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# Install data science packages
RUN pip install --no-cache-dir \
pandas \
scikit-learn \
matplotlib \
seaborn \
markdown
# Setup IPython kernel
RUN ipython kernel install --name "python3" --user
# Copy application code
COPY --chown=user . /app
RUN chmod +x /app/download_data.sh
RUN /app/download_data.sh
# Expose the port FastAPI will run on
EXPOSE 7860
# Command to run the FastAPI app with Uvicorn
CMD ["uvicorn", "app.jupyter_api:app", "--host", "0.0.0.0", "--port", "7860"]
|