Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
containerize
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package registry
Container Registry
Operate
Terraform modules
Monitor
Service Desk
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
Studio R215
containerize
Compare revisions
3f4c1d7b08bcf2ccc894a51a2553fb5ef279eaac to e69f25b9a8cf50dd46da862ee633f74347d0c4be
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
studio-r215/containerize
Select target project
No results found
e69f25b9a8cf50dd46da862ee633f74347d0c4be
Select Git revision
Branches
main
Swap
Target
studio-r215/containerize
Select target project
studio-r215/containerize
1 result
3f4c1d7b08bcf2ccc894a51a2553fb5ef279eaac
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
add requirements for Cython
· 4878131d
Sebastian Karius
authored
3 weeks ago
4878131d
Merge remote-tracking branch 'origin/main'
· e69f25b9
Sebastian Karius
authored
3 weeks ago
e69f25b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docker/coder-ubuntu_22-python/Dockerfile
+2
-1
2 additions, 1 deletion
docker/coder-ubuntu_22-python/Dockerfile
docker/coder-ubuntu_24-python/Dockerfile
+2
-1
2 additions, 1 deletion
docker/coder-ubuntu_24-python/Dockerfile
with
4 additions
and
2 deletions
docker/coder-ubuntu_22-python/Dockerfile
View file @
e69f25b9
...
...
@@ -8,7 +8,8 @@ RUN apt-get update && apt-get upgrade -y
RUN
apt-get
install
-y
git wget curl
# install python, pip and venv
RUN
apt-get
install
-y
python3 python3-pip python3-venv
# install python-dev and gcc for Cython
RUN
apt-get
install
-y
python3 python3-pip python3-venv python3-dev gcc
# install pipx
ENV
TZ=Europe/Berlin
...
...
This diff is collapsed.
Click to expand it.
docker/coder-ubuntu_24-python/Dockerfile
View file @
e69f25b9
...
...
@@ -8,7 +8,8 @@ RUN apt-get update && apt-get upgrade -y
RUN
apt-get
install
-y
git wget curl
# install python, pip and venv
RUN
apt-get
install
-y
python3 python3-pip python3-venv cython3
# install python-dev and gcc for Cython
RUN
apt-get
install
-y
python3 python3-pip python3-venv python3-dev gcc
# install pipx
ENV
TZ=Europe/Berlin
...
...
This diff is collapsed.
Click to expand it.