mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 12:54:50 +01:00
build: Update Dockerfile and devcontainer.json for enhanced environment setup
This commit is contained in:
parent
c094aeaf39
commit
0ea5d70423
@ -1,12 +1,53 @@
|
|||||||
FROM mcr.microsoft.com/vscode/devcontainers/base:debian
|
FROM gcc:11.2.0
|
||||||
|
|
||||||
RUN sudo apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
&& sudo apt-get install -y \
|
|
||||||
cmake \
|
RUN apt-get update \
|
||||||
git \
|
&& apt-get install -y \
|
||||||
libeigen3-dev \
|
git \
|
||||||
libopenmpi-dev \
|
sudo \
|
||||||
r-base-dev
|
ninja-build \
|
||||||
|
fzf \
|
||||||
|
libblas-dev && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
WORKDIR /tmp
|
||||||
|
|
||||||
|
RUN curl -Ls https://download.open-mpi.org/release/open-mpi/v5.0/openmpi-5.0.5.tar.gz | tar xz && \
|
||||||
|
cd openmpi-5.0.5 && \
|
||||||
|
./configure --prefix=/usr/local && \
|
||||||
|
make -j $(nproc) && \
|
||||||
|
make install && \
|
||||||
|
rm -rf /tmp/openmpi-5.0.5
|
||||||
|
|
||||||
|
RUN curl -Lo cmake.sh https://github.com/Kitware/CMake/releases/download/v3.30.5/cmake-3.30.5-linux-x86_64.sh \
|
||||||
|
&& bash ./cmake.sh --skip-license --prefix=/usr/local \
|
||||||
|
&& rm cmake.sh
|
||||||
|
|
||||||
|
RUN curl -Ls https://github.com/Reference-LAPACK/lapack/archive/refs/tags/v3.12.0.tar.gz | tar xz && \
|
||||||
|
cd lapack-3.12.0 && \
|
||||||
|
mkdir build && \
|
||||||
|
cd build && \
|
||||||
|
cmake .. -G Ninja -DBUILD_SHARED_LIBS=ON && \
|
||||||
|
ninja install && \
|
||||||
|
rm -rf /tmp/lapack-3.12.0
|
||||||
|
|
||||||
|
RUN curl -Ls https://cran.r-project.org/src/base/R-4/R-4.4.2.tar.gz | tar xz && \
|
||||||
|
cd R-4.4.2 && \
|
||||||
|
./configure --prefix=/usr/local --enable-R-shlib --with-blas --with-lapack && \
|
||||||
|
make -j $(nproc) && \
|
||||||
|
make install && \
|
||||||
|
rm -rf /tmp/R-4.4.2
|
||||||
|
|
||||||
|
RUN /usr/local/bin/R -q -e "install.packages(c('Rcpp', 'RInside', 'qs'), repos='https://cran.rstudio.com/')"
|
||||||
|
|
||||||
|
RUN curl -Ls https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.bz2 | tar xj \
|
||||||
|
&& mkdir /tmp/eigen-3.4.0/build \
|
||||||
|
&& cd /tmp/eigen-3.4.0/build \
|
||||||
|
&& cmake .. -G Ninja \
|
||||||
|
&& ninja install \
|
||||||
|
&& rm -rf /tmp/eigen-3.4.0
|
||||||
|
|
||||||
RUN git clone https://github.com/doctest/doctest.git /doctest \
|
RUN git clone https://github.com/doctest/doctest.git /doctest \
|
||||||
&& cd /doctest \
|
&& cd /doctest \
|
||||||
@ -14,7 +55,16 @@ RUN git clone https://github.com/doctest/doctest.git /doctest \
|
|||||||
&& cd build \
|
&& cd build \
|
||||||
&& cmake .. \
|
&& cmake .. \
|
||||||
&& make install \
|
&& make install \
|
||||||
&& cd / \
|
|
||||||
&& rm -rf /doctest
|
&& rm -rf /doctest
|
||||||
|
|
||||||
RUN /usr/bin/R -q -e "install.packages(c('Rcpp', 'RInside'))"
|
RUN useradd -m -s /bin/bash -G sudo vscode \
|
||||||
|
&& echo "vscode ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
|
||||||
|
|
||||||
|
USER vscode
|
||||||
|
|
||||||
|
ENV LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
|
||||||
|
|
||||||
|
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.1/zsh-in-docker.sh)" -- \
|
||||||
|
-t agnoster
|
||||||
|
|
||||||
|
WORKDIR /home/vscode
|
||||||
|
|||||||
@ -21,7 +21,8 @@
|
|||||||
},
|
},
|
||||||
// in case you want to push/pull from remote repositories using ssh
|
// in case you want to push/pull from remote repositories using ssh
|
||||||
"mounts": [
|
"mounts": [
|
||||||
"source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,consistency=cached"
|
"source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,consistency=cached",
|
||||||
|
"source=${localEnv:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached"
|
||||||
]
|
]
|
||||||
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
|
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
|
||||||
// "remoteUser": "devcontainer"
|
// "remoteUser": "devcontainer"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user