Commit 72ff90b2 authored by Yury Hayeu's avatar Yury Hayeu Committed by Tomáš Oberhuber
Browse files

Add Docker image as development environment

parent ee8a7d16
Loading
Loading
Loading
Loading

Dockerfile

0 → 100644
+16 −0
Original line number Diff line number Diff line
FROM nvidia/cuda:11.4.2-devel-ubuntu20.04

# Fix timezone
ENV TZ=Europe/Prague
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

RUN apt-get update
RUN apt-get install -y --no-install-recommends g++ gcc make cmake zlib1g-dev libjpeg-dev libpng-dev libtinyxml2-dev
RUN apt-get install -y --no-install-recommends git openssh-client subversion procps
RUN apt-get install -y --no-install-recommends vim valgrind gpg man-db
RUN apt-get install -y --no-install-recommends zsh ca-certificates curl netbase wget

RUN git config --global alias.ll 'log --oneline --graph --all --decorate'
RUN git config --global core.editor 'vim'

WORKDIR /workspace