csci5451/Dockerfile

19 lines
407 B
Docker
Raw Normal View History

2023-10-08 01:37:18 +00:00
FROM ubuntu:22.04
2023-10-09 07:51:38 +00:00
ENV PATH="/root/.cargo/bin:${PATH}"
2023-10-08 01:37:18 +00:00
RUN apt update -y && apt install -y --no-install-recommends \
2023-10-09 07:51:38 +00:00
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