Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Merge requests
!707
feat: rm python requirements install
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
feat: rm python requirements install
rm-python-requirements
into
master
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
feat: rm python requirements install
Wouter Deconinck
requested to merge
rm-python-requirements
into
master
Aug 24, 2023
Overview
0
Commits
2
Pipelines
0
Changes
1
0
0
Merge request reports
Compare
master
version 1
b34899a1
Aug 24, 2023
master (base)
and
version 1
latest version
a1622c39
2 commits,
Aug 24, 2023
version 1
b34899a1
1 commit,
Aug 24, 2023
1 file
+
0
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
containers/jug/dev.Dockerfile
+
0
−
15
View file @ b34899a1
Edit in single-file editor
Open in Web IDE
Show full file
@@ -136,21 +136,6 @@ RUN --mount=type=cache,target=/var/cache/spack,sharing=locked \
[
-z
"
${
CACHE_NUKE
}
"
]
\
||
rm
-rf
/var/cache/spack/mirror/
${
SPACK_VERSION
}
/build_cache/
*
## Extra post-spack steps:
## - Python packages
COPY
requirements.txt /usr/local/etc/requirements.txt
RUN
--mount
=
type
=
cache,target
=
/var/cache/pip,sharing
=
locked,id
=
${
TARGETPLATFORM
}
\
echo
"Installing additional python packages"
\
&&
source
$SPACK_ROOT
/share/spack/setup-env.sh
\
&&
spack
env
activate
--dir
${
SPACK_ENV
}
\
&&
python
-m
pip
install
\
--trusted-host
pypi.org
\
--trusted-host
files.pythonhosted.org
\
--cache-dir
/var/cache/pip
\
--requirement
/usr/local/etc/requirements.txt
\
--no-warn-script-location
# ^ Supress not on PATH Warnings
## Including some small fixes
RUN
echo
"Grabbing environment info"
\
&&
spack
env
activate
--sh
--dir
${
SPACK_ENV
}
\
Loading