-
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.
add initial development and production dockerfiles
- Loading branch information
Showing
2 changed files
with
43 additions
and
10 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 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