FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonVSCode/.devcontainer/Dockerfile at main · zashed/pythonVSCode · GitHub
zashed
/
pythonVSCode
Public
forked from
DonJayamanne/pythonVSCode
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonVSCode
/
.devcontainer
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
18 lines (12 loc) · 624 Bytes
Breadcrumbs
pythonVSCode
/
.devcontainer
/
Dockerfile
Copy path
File metadata and controls
18 lines (12 loc) · 624 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM
mcr.microsoft.com/devcontainers/typescript-node:18-bookworm
RUN
apt-get install -y wget bzip2
#
Run in silent mode and save downloaded script as anaconda.sh.
#
Run with /bin/bash and run in silent mode to /opt/conda.
#
Also get rid of installation script after finishing.
RUN
wget --quiet https://repo.anaconda.com/archive/Anaconda3-2023.07-1-Linux-x86_64.sh -O ~/anaconda.sh && \
/bin/bash ~/anaconda.sh -b -p /opt/conda && \
rm ~/anaconda.sh
ENV
PATH=
"/opt/conda/bin:$PATH"
#
Sudo apt update needs to run in order for installation of fish to work .
RUN
sudo apt update && \
sudo apt install fish -y
Back
|
FazBrowse Home
|
New Git URL