19 lines
No EOL
407 B
Docker
19 lines
No EOL
407 B
Docker
FROM ubuntu:22.04
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
RUN apt update -y && apt install -y --no-install-recommends \
|
|
build-essential \
|
|
ca-certificates \
|
|
clangd \
|
|
curl \
|
|
direnv \
|
|
git \
|
|
libomp-dev \
|
|
python3 \
|
|
python3-pip \
|
|
valgrind \
|
|
;
|
|
RUN pip install poetry
|
|
|
|
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
|
|
RUN echo 'eval "$(direnv hook bash)"' >> /root/.bashrc |