Skip to content

Instantly share code, notes, and snippets.

@omrylcn
Last active April 7, 2020 16:21
Show Gist options
  • Save omrylcn/96fbc4dc89b58e975648febcbd544f74 to your computer and use it in GitHub Desktop.
Save omrylcn/96fbc4dc89b58e975648febcbd544f74 to your computer and use it in GitHub Desktop.
FROM ubuntu:18.04
# Paket listelerini download et
RUN apt-get update
# python3 and jupyter-lab paketini yükle
RUN apt-get install -y python3
# python paket yükleyicisi
RUN apt-get install -y python3-pip
# jupyterlab ı yükle
RUN pip3 install jupyterlab
RUN mkdir app
# python paketlerinin yazılı olduğu dosya
ADD [ "./requirements.txt", "/app/requirements.txt" ]
# data science için kullanışlı paketleri text dosyasına bakarak yükler
RUN pip3 install -r /app/requirements.txt
WORKDIR /app
ENTRYPOINT ./run_jupyterlab.sh
numpy
scipy
pandas
scikit-learn
matplotlib
seaborn
plotly
statsmodels
yellowbrick
catboost
lightgbm
xgboost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment