Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Web Reflectivity
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
reflectometry
Web Reflectivity
Merge requests
!135
Use mamba when setting the conda environment in the testing container
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Use mamba when setting the conda environment in the testing container
buildtestimage_fails
into
next
Overview
0
Commits
4
Pipelines
4
Changes
1
Merged
Borreguero Calvo, Jose
requested to merge
buildtestimage_fails
into
next
2 years ago
Overview
0
Commits
4
Pipelines
4
Changes
1
Expand
Closes
https://code.ornl.gov/sns-hfir-scse/reflectometry/reflectometry/-/issues/471
Edited
2 years ago
by
Borreguero Calvo, Jose
👍
0
👎
0
Merge request reports
Compare
next
version 3
cd0371bc
2 years ago
version 2
c30b60a9
2 years ago
version 1
8637507a
2 years ago
next (base)
and
latest version
latest version
30dbbf59
4 commits,
2 years ago
version 3
cd0371bc
3 commits,
2 years ago
version 2
c30b60a9
2 commits,
2 years ago
version 1
8637507a
1 commit,
2 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
cfg/Dockerfile.ci
+
2
−
2
Options
@@ -8,7 +8,7 @@ RUN conda update --name base -c defaults conda
# downgrade to python 3.8 - this must match src/environment.yml to be useful
#RUN conda install --name base -c conda-forge python=3.8 mamba>=0.22.1 pip
RUN conda install -y -c conda-forge
python=3.8 pip coverage make sphinx pre-commit
RUN conda install -y -c conda-forge
mamba>=0.22.1 python=3.8
ARG TWINE_USERNAME
ARG TWINE_REPO
@@ -24,5 +24,5 @@ WORKDIR ${APP_DIR}
COPY . .
# install the dependencies
RUN
cond
a env update --name base --file src/environment.yml
RUN
mamb
a env update --name base --file src/environment.yml
RUN cd src && conda develop .
Loading