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
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
Merged
feat: rm python requirements install
rm-python-requirements
into
master
Overview
0
Commits
2
Pipelines
0
Changes
2
Merged
Wouter Deconinck
requested to merge
rm-python-requirements
into
master
1 year ago
Overview
0
Commits
2
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
master
version 1
b34899a1
1 year ago
master (base)
and
latest version
latest version
a1622c39
2 commits,
1 year ago
version 1
b34899a1
1 commit,
1 year ago
2 files
+
0
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
containers/jug/dev.Dockerfile
+
0
−
15
Options
@@ -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