Skip to content

Commit

Permalink
feat: Add Dockerfiles for Python
Browse files Browse the repository at this point in the history
  • Loading branch information
cbluebird committed Sep 6, 2024
1 parent 384ad99 commit 2539aac
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Language/python/python3.10/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM ghcr.io/labring-actions/devbox/debian-ssh:d8f335

RUN apt-get update && \
apt-get install -y python3.10 python3-pip python3-venv && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN mkdir /root/.sealos
8 changes: 8 additions & 0 deletions Language/python/python3.11/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM ghcr.io/labring-actions/devbox/debian-ssh:d8f335

RUN apt-get update && \
apt-get install -y python3.11 python3-pip python3-venv && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN mkdir /root/.sealos
8 changes: 8 additions & 0 deletions Language/python/python3.12/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM ghcr.io/labring-actions/devbox/debian-ssh:d8f335

RUN apt-get update && \
apt-get install -y python3 python3-pip python3-venv && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN mkdir /root/.sealos

0 comments on commit 2539aac

Please sign in to comment.