|
|
|
FROM python:3.9-slim |
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \ |
|
gcc \ |
|
python3-dev \ |
|
wget \ |
|
&& rm -rf /var/lib/apt/lists |
|
|
|
|
|
|
|
RUN useradd -m -u 1000 user |
|
USER user |
|
ENV PATH="/home/user/.local/bin:$PATH" |
|
WORKDIR /app |
|
|
|
|
|
ENV PYTHONUNBUFFERED=1 |
|
ENV PYTHONIOENCODING=UTF-8 |
|
|
|
|
|
|
|
COPY --chown=user ./requirements.txt requirements.txt |
|
RUN pip install --no-cache-dir --upgrade -r requirements.txt |
|
|
|
|
|
|
|
RUN pip install --no-cache-dir \ |
|
pandas \ |
|
scikit-learn \ |
|
matplotlib \ |
|
seaborn |
|
|
|
|
|
|
|
RUN ipython kernel install --name "python3" --user |
|
|
|
|
|
COPY --chown=user . /app |
|
|
|
RUN chmod +x /app/download_data.sh |
|
RUN /app/download_data.sh |
|
|
|
|
|
EXPOSE 7860 |
|
|
|
|
|
CMD ["uvicorn", "app.jupyter_api:app", "--host", "0.0.0.0", "--port", "7860"] |
|
|