-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into develop-documentation
- Loading branch information
Showing
5 changed files
with
43 additions
and
762 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
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 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.