Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MyDockerImages
docker-openvscode-server-python
Commits
ecbe3ea5
Unverified
Commit
ecbe3ea5
authored
Sep 07, 2022
by
Dominique Marcadet
Browse files
image for hangman and scientific SIP labs
parents
Changes
3
Hide whitespace changes
Inline
Side-by-side
Dockerfile
0 → 100644
View file @
ecbe3ea5
FROM
gitlab-research.centralesupelec.fr:4567/my-docker-images/docker-openvscode-server:latest
## software needed
## python3 and python extension for VSCode already installed in base image
# For SIP TD (except Pistus)
RUN
pip3
install
jupyter numpy matplotlib
Makefile
0 → 100644
View file @
ecbe3ea5
REPO
=
gitlab-research.centralesupelec.fr:4567/my-docker-images/docker-openvscode-server-python
TAG
=
latest
all
:
docker buildx create
--use
--node
new-builder
docker buildx build
--push
--platform
"linux/amd64"
,
"linux/arm64"
--tag
"
${REPO}
:
${TAG}
"
.
README.md
0 → 100644
View file @
ecbe3ea5
# docker-openvscode-server-python
## What
This image is based on
[
docker-openvscode-server
](
https://gitlab-research.centralesupelec.fr/my-docker-images/docker-openvscode-server
)
,
it adds the needed tools for basic Python development.
Included libraries are:
-
jupyter
-
matplotlib
-
numpy
## Details
-
The exposed port is 3000
-
The user folder is
`/config`
-
the user and sudo password is
`abc`
-
if docker is installed on your computer, you can run (amd64 or arm64 architecture) this
image, assuming you are in a specific folder that will be shared with the container at
`/config`
, with:
`docker run -p 3000:3000 -v "$(pwd):/config"
gitlab-research.centralesupelec.fr:4567/my-docker-images/docker-openvscode-server-python`
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment