mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-22 04:47:56 -04:00
20 lines
No EOL
658 B
Text
20 lines
No EOL
658 B
Text
FROM ubuntu:20.04
|
|
|
|
LABEL "Udit Subramanya"="usubramanya3@gatech.edu"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y build-essential valgrind git wget libpng-dev libboost-all-dev uuid-dev ccache cmake
|
|
|
|
# Third-Party Repository to Install g++11 on Ubuntu 18.04
|
|
RUN apt-get install -y manpages-dev software-properties-common
|
|
RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
|
|
|
RUN apt-get install -y gcc-11 g++-11
|
|
|
|
RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 11
|
|
RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 11
|
|
|
|
# create a directory for mounting the volume
|
|
WORKDIR /root/vortex |