Added pip update
All checks were successful
Deploy on push / on-push-deploy_sh-edraft (push) Successful in 9m46s

This commit is contained in:
Sven Heidemann 2023-11-28 08:50:04 +00:00
parent 9530288124
commit 8faa5b8795
2 changed files with 5 additions and 1 deletions

View File

@ -9,6 +9,8 @@ services:
- /opt/code_server/.local:/home/coder/.local
- /opt/code_server/.config:/home/coder/.config
- /opt/code_server/projects:/home/coder/projects
- /opt/code_server/.gitconfig:/home/coder/.gitconfig
- /opt/code_server/.git-credentials:/home/coder/.git-credentials
deploy:
mode: replicated
replicas: 1

View File

@ -20,9 +20,11 @@ RUN sudo apt install -y build-essential zlib1g-dev libncurses5-dev libgdbm-dev l
./configure --prefix=/usr/local --enable-optimizations --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib" && \
make -j $(nproc) && \
sudo make altinstall && \
python3.10 -m pip install --user --upgrade pip && \
cd ../ && sudo rm -rf Python-3.10.*/ && sudo rm Python-3.10.*.tgz
RUN python3.10 -m pip install --upgrade pip
RUN python3.10 -m pip install --user --upgrade pip
RUN python3.10 -m pip install cpl-cli --extra-index-url https://pip.sh-edraft.de
RUN python3.10 -m pip install cpl-query --extra-index-url https://pip.sh-edraft.de