-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
15 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
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
FROM ubuntu:trusty | ||
FROM heroku/cedar:14 | ||
MAINTAINER friism | ||
|
||
RUN apt-get -q update | ||
RUN apt-get -q -y install curl gcc g++ make wget unzip | ||
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | ||
|
||
RUN wget -q https://github.com/rlmcpherson/s3gof3r/releases/download/v0.3.0/gof3r_linux_amd64_binary.zip | ||
RUN unzip gof3r_linux_amd64_binary.zip | ||
RUN mv gof3r_linux_amd64_binary/gof3r . | ||
RUN rm -rf gof3r_linux_amd64_binary* | ||
RUN echo "deb http://download.mono-project.com/repo/debian wheezy/snapshots/4.0.0 main" > /etc/apt/sources.list.d/mono-xamarin.list \ | ||
&& apt-get update \ | ||
&& apt-get install -y mono-devel ca-certificates-mono mono-vbnc \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-get -q update \ | ||
&& apt-get -q -y install curl gcc g++ make wget unzip \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
COPY build build | ||
CMD ./build | ||
|
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