Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PythonIntro
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PythonDataScienceMatSci
PythonIntro
Commits
94286d34
Commit
94286d34
authored
2 months ago
by
Ulrich Kerzel
Browse files
Options
Downloads
Patches
Plain Diff
update docker file as per mail from ITC
parent
cfafa2e8
Branches
Issue/2158-emailServicedesk
Branches containing commit
Tags
v2.8.1
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+9
-2
9 additions, 2 deletions
Dockerfile
with
9 additions
and
2 deletions
Dockerfile
+
9
−
2
View file @
94286d34
# Specify parent image. Please select a fixed tag here.
ARG
BASE_IMAGE=registry.git.rwth-aachen.de/jupyter/profiles/rwth-courses:latest
#ARG BASE_IMAGE=registry.git.rwth-aachen.de/jupyter/profiles/rwth-courses:latest
ARG
BASE_IMAGE=registry.jupyter.rwth-aachen.de/profiles/rwth-courses-python-3.11:latest
FROM
${BASE_IMAGE}
ARG
conda_env=python311
ARG
py_ver=3.11
ARG
disp_name="Python 3.11 (ipykernel)"
# Install packages via requirements.txt
ADD
requirements.txt .
RUN
pip
install
-r
requirements.txt
# RUN pip install -r requirements.txt
RUN
"
${
CONDA_DIR
}
/envs/
${
conda_env
}
/bin/pip"
install
--no-cache-dir
-r
requirements.txt
# .. Or update conda base environment to match specifications in environment.yml
# ADD environment.yml /tmp/environment.yml
...
...
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