From 53c5b6cf40b9db854c7143ee2daf54464cbc83b1 Mon Sep 17 00:00:00 2001 From: Ben Wibking Date: Fri, 23 Aug 2024 14:23:04 +0000 Subject: [PATCH] remove Dockerfile --- .devcontainer/Dockerfile | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .devcontainer/Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index a4763b08..00000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -FROM mcr.microsoft.com/devcontainers/cpp:ubuntu-24.04 - -RUN apt-get --yes -qq update \ - && apt-get --yes -qq upgrade \ - && apt-get --yes -qq install build-essential \ - git cmake clangd gcc g++ \ - python3-dev python3-numpy python3-matplotlib python3-pip python3-h5py \ - sphinx-doc python3-sphinx-rtd-theme python3-sphinxcontrib.bibtex python3-sphinx-copybutton \ - libopenmpi-dev \ - libhdf5-mpi-dev \ - && apt-get --yes -qq clean \ - && rm -rf /var/lib/apt/lists/* - -WORKDIR /home/ubuntu -USER ubuntu - -# install esbonio for Sphinx VSCode support (no Ubuntu package for this) -RUN pip install esbonio --break-system-packages - -# install unyt -RUN pip install unyt --break-system-packages - -# workaround Python babel bug -ENV TZ=UTC - -CMD [ "/bin/bash" ] \ No newline at end of file