try to make CD runner image smaller as it still fails with running out of disk space

This commit is contained in:
2022-02-10 09:27:30 +01:00
parent b1c3b2f25f
commit 419ae66813
2 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -7,8 +7,7 @@ before_script:
- apt-get install -y python3-sphinx && apt-get clean
- apt-get install -y jupyter-notebook && apt-get clean
- apt-get install -y python3-anyio python3-greenlet python3-click python3-jupyter-server python3-sqlalchemy python3-latexcodec python3-nbclient python3-nest-asyncio python3-pybtex python3-pybtex-docutils python3-smmap python3-soupsieve python3-toml && apt-get clean
- pip install jupyter-book
- pip install jupyter-book && pip cache purge
pages:
stage: deploy
+2 -2
View File
@@ -1,8 +1,8 @@
FROM debian:latest
RUN apt-get update
RUN apt-get install -y pip python3-sphinx jupyter-notebook python3-anyio python3-greenlet python3-click python3-jupyter-server python3-sqlalchemy python3-latexcodec python3-nbclient python3-nest-asyncio python3-pybtex python3-pybtex-docutils python3-smmap python3-soupsieve python3-toml
RUN pip install jupyter-book
RUN apt-get install -y pip python3-sphinx jupyter-notebook python3-anyio python3-greenlet python3-click python3-jupyter-server python3-sqlalchemy python3-latexcodec python3-nbclient python3-nest-asyncio python3-pybtex python3-pybtex-docutils python3-smmap python3-soupsieve python3-toml && apt-get clean
RUN pip install jupyter-book && pip cache purge
RUN mkdir -p /root/documentation
COPY * /root/documentation