Last active
December 19, 2015 12:29
Revisions
-
junosuarez revised this gist
Jul 9, 2013 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,4 @@ FROM base:ubuntu-12.10 RUN apt-get -y install mono-devel autoconf pkg-config make git libtool RUN git clone https://github.com/fsharp/fsharp RUN cd fsharp && ./autogen.sh --prefix /usr && make && make install -
junosuarez revised this gist
Jul 9, 2013 . 1 changed file with 3 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,6 @@ FROM base:ubuntu-12.10 RUN apt-get -y install mono-devel autoconf pkg-config make git libtool RUN git clone https://github.com/fsharp/fsharp RUN cd fsharp; ./autogen.sh --prefix /usr RUN cd fsharp; make RUN cd fsharp; make install -
junosuarez created this gist
Jul 9, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # DOCKER-VERSION 0.4.8 FROM base:ubuntu-12.10 RUN apt-get -y install mono-devel autoconf pkg-config make git libtool RUN git clone https://github.com/fsharp/fsharp RUN cd fsharp RUN ./autogen.sh --prefix /usr RUN make RUN make install