dotfiles/vscode/.vscode/extensions/ms-python.python-2024.8.0/.devcontainer/Dockerfile
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

19 lines
624 B
Docker

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