43 lines
1.3 KiB
Docker
43 lines
1.3 KiB
Docker
ARG CUDA_VERSION_ARG
|
|
FROM nvidia/cuda:$CUDA_VERSION_ARG-devel-ubuntu22.04
|
|
ARG CUDA_VERSION_ARG
|
|
|
|
# Environment
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Install all basic requirements
|
|
RUN \
|
|
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/3bf863cc.pub && \
|
|
apt-get update && \
|
|
apt-get install -y wget git python3 python3-pip software-properties-common \
|
|
apt-transport-https ca-certificates gnupg-agent && \
|
|
apt-get install -y llvm-15 clang-tidy-15 clang-15 libomp-15-dev && \
|
|
apt-get install -y cmake
|
|
|
|
# Set default clang-tidy version
|
|
RUN \
|
|
update-alternatives --install /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-15 100 && \
|
|
update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 100
|
|
|
|
RUN \
|
|
apt-get install libgtest-dev libgmock-dev -y
|
|
|
|
# Install Python packages
|
|
RUN \
|
|
pip3 install pyyaml
|
|
|
|
ENV GOSU_VERSION=1.10
|
|
|
|
# Install lightweight sudo (not bound to TTY)
|
|
RUN set -ex; \
|
|
wget -nv -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-amd64" && \
|
|
chmod +x /usr/local/bin/gosu && \
|
|
gosu nobody true
|
|
|
|
# Default entry-point to use if running locally
|
|
# It will preserve attributes of created files
|
|
COPY entrypoint.sh /scripts/
|
|
|
|
WORKDIR /workspace
|
|
ENTRYPOINT ["/scripts/entrypoint.sh"]
|