Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • jr662933/jupyterhub-ai
  • buecker/jupyterhub-ai
  • buecker/jupyterhub
  • sr151511/vennemann
4 results
Show changes
Commits on Source (18)
......@@ -10,14 +10,34 @@ WORKDIR /usr/src/app
# Install basics
USER jovyan
# RUN pip3 install --upgrade pip setuptools wheel
RUN pip3 install --upgrade pip
# RUN pip3 install pip-review
# RUN pip-review --local --auto
COPY .env .env
RUN pip3 install jupyterlab-git==0.34.0
RUN pip3 install jupyterlab-gitlab==3.0.0
RUN pip3 install psycopg2-binary
RUN pip3 install psycopg2
RUN pip3 install python-dotenv
RUN pip3 install sqlalchemy
RUN pip3 install urllib3
RUN pip3 install yahooquery==2.3.7
RUN pip3 install numpy==1.26.4
# RUN pip3 install numba==0.59.1
RUN pip3 install scipy==1.13.1
RUN pip3 install matplotlib==3.8.4
RUN pip3 install seaborn==0.13.2
RUN pip3 install plotly==5.22.0
# Install python packages
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
ENV IPYTHONDIR /usr/src/app/ipython/
WORKDIR /usr/src/app/ipython/profile_default/startup/
COPY python_startup/ ./
WORKDIR /home/
#COPY requirements.txt requirements.txt
#RUN pip install --no-cache-dir -r requirements.txt
#RUN pip install --ignore-installed --no-cache-dir -r requirements.txt
# ENV IPYTHONDIR /usr/src/app/ipython/
# WORKDIR /usr/src/app/ipython/profile_default/startup/
# COPY python_startup/ ./
# WORKDIR /home/
......@@ -5,4 +5,10 @@ psycopg2
python-dotenv
sqlalchemy
urllib3
dash
yahooquery==2.3.7
numpy==1.26.4
numba==0.59.1
scipy==1.13.1
matplotlib==3.8.4
seaborn==0.13.2
plotly==5.22.0
\ No newline at end of file