Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CI stuff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
shore
CI stuff
Compare revisions
f941c19d91b5830fee02d6a50e75a5801d4ff105 to 71ba42a1c7dc0c566fc27c88155b17d2ec40666f
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
shore/ci-stuff
Select target project
No results found
71ba42a1c7dc0c566fc27c88155b17d2ec40666f
Select Git revision
Branches
master
1 result
Swap
Target
shore/ci-stuff
Select target project
shore/ci-stuff
1 result
f941c19d91b5830fee02d6a50e75a5801d4ff105
Select Git revision
Branches
master
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
pre-commit image: Allow Pip to install system-level packages.
· bc8062c3
nimrod
authored
1 year ago
bc8062c3
Python3 image: Allow Pip to install system level packages.
· 71ba42a1
nimrod
authored
1 year ago
71ba42a1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
images/pre-commit/Dockerfile
+1
-2
1 addition, 2 deletions
images/pre-commit/Dockerfile
images/python3/Dockerfile
+1
-2
1 addition, 2 deletions
images/python3/Dockerfile
with
2 additions
and
4 deletions
images/pre-commit/Dockerfile
View file @
71ba42a1
...
...
@@ -12,8 +12,7 @@ RUN curl -fsSL https://apt.releases.hashicorp.com/gpg | \
python3-setuptools
\
python3-venv
\
&&
\
python3
-m
pip
install
--no-cache-dir
--upgrade
pip
&&
\
python3
-m
pip
install
--no-cache-dir
\
python3
-m
pip
install
--no-cache-dir
--break-system-packages
\
docker-compose
\
pipenv
\
poetry
\
...
...
This diff is collapsed.
Click to expand it.
images/python3/Dockerfile
View file @
71ba42a1
...
...
@@ -6,8 +6,7 @@ RUN apt-get update && \
python3-pip
\
python3-venv
\
&&
\
python3
-m
pip
install
--progress-bar
=
off
--no-cache-dir
--upgrade
pip
&&
\
python3
-m
pip
install
--progress-bar
=
off
--no-cache-dir
--upgrade
\
python3
-m
pip
install
--progress-bar
=
off
--no-cache-dir
--upgrade
--break-system-packages
\
pipenv
\
poetry
\
tox
\
...
...
This diff is collapsed.
Click to expand it.