Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mednet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
medai
software
mednet
Commits
f84c0edf
Commit
f84c0edf
authored
1 year ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
[docker] Experiment with new dockerfile
parent
aeba47ef
No related branches found
No related tags found
2 merge requests
!30
Use pixi
,
!29
[docker] Experiment with new dockerfile
Pipeline
#85527
failed
1 year ago
Stage: qa
Stage: test
Stage: doc
Stage: dist
Stage: deploy
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-1
1 addition, 1 deletion
.gitignore
Dockerfile
+10
-0
10 additions, 0 deletions
Dockerfile
with
11 additions
and
1 deletion
.gitignore
+
1
−
1
View file @
f84c0edf
...
...
@@ -26,7 +26,7 @@ _work/
.pytest_cache/
results*/
*_version.py
.pixi
.venv
.pixi
pixi.toml
pixi.lock
This diff is collapsed.
Click to expand it.
Dockerfile
0 → 100644
+
10
−
0
View file @
f84c0edf
FROM
mambaorg/micromamba:focal-cuda-12.3.1
USER
root
RUN
apt-get update
&&
apt-get
install
-y
--no-install-recommends
nvidia-utils-545
&&
rm
-rf
/var/lib/apt/lists/
*
USER
$MAMBA_USER
COPY
--chown=$MAMBA_USER:$MAMBA_USER dist /tmp/dist
ENV
CONDA_OVERRIDE_CUDA=12.0
RUN
micromamba
install
--name
base
--yes
--override-channels
-c
/tmp/dist
-c
conda-forge
python
=
3.11 mednet
'pytorch=*=cuda120*'
&&
micromamba clean
--all
--yes
&&
rm
-rf
/tmp/dist
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment