Skip to content
Snippets Groups Projects
Commit 6c59a665 authored by Michael Bücker's avatar Michael Bücker
Browse files

Update Dockerfile

parent f3e1a070
No related branches found
No related tags found
No related merge requests found
Pipeline #211444 failed
...@@ -16,10 +16,26 @@ RUN pip3 install --upgrade pip ...@@ -16,10 +16,26 @@ RUN pip3 install --upgrade pip
# RUN pip-review --local --auto # RUN pip-review --local --auto
COPY .env .env 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 # Install python packages
COPY requirements.txt requirements.txt #COPY requirements.txt requirements.txt
#RUN pip install --no-cache-dir -r requirements.txt #RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --ignore-installed --no-cache-dir -r requirements.txt #RUN pip install --ignore-installed --no-cache-dir -r requirements.txt
ENV IPYTHONDIR /usr/src/app/ipython/ ENV IPYTHONDIR /usr/src/app/ipython/
WORKDIR /usr/src/app/ipython/profile_default/startup/ WORKDIR /usr/src/app/ipython/profile_default/startup/
COPY python_startup/ ./ COPY python_startup/ ./
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment