Last active
October 14, 2019 02:08
Revisions
-
fennecdjay revised this gist
Oct 14, 2019 . 3 changed files with 7 additions and 14 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,5 @@ FROM fennecdjay/base:latest USER $NB_USER RUN git clone https://github.com/fennecdjay/gwion && cd gwion && \ git submodule update --init util ast && make 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ FROM fennecdjay/base:latest USER root RUN pacman --noconfirm -Suy RUN pacman --noconfirm -S cabal-install ghc alex happy RUN pacman --noconfirm -S haskell-monad-control USER $NB_USER 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 charactersOriginal file line number Diff line number Diff line change @@ -1,12 +0,0 @@ -
fennecdjay revised this gist
Oct 14, 2019 . 3 changed files with 13 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 charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,8 @@ FROM archlinux/base:latest USER root RUN pacman --noconfirm -Suy RUN pacman --noconfirm -S base-devel git USER $NB_USER CMD bash 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 charactersOriginal file line number Diff line number Diff line change @@ -1,21 +1,11 @@ FROM fennecdjay/base:latest WORKDIR /tmp USER $NB_USER RUN git clone https://github.com/fennecdjay/gwion && cd gwion && \ git submodule update --init util ast && make USER root RUN cd gwion && make install USER $NB_USER 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ FROM fennecdjay/base:latest WORKDIR /tmp USER root RUN pacman --noconfirm -Suy RUN pacman --noconfirm -S cabal-install USER $NB_USER RUN git clone https://github.com/fennecdjay/mdr && cd mdr && \ cabal build && cabal install -
fennecdjay revised this gist
Oct 14, 2019 . 2 changed files with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes.File renamed without changes. -
fennecdjay created this gist
Oct 14, 2019 .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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ # just archlinux + base-devel + git FROM archlinux/base:latest USER root RUN pacman --noconfirm -Suy RUN pacman --noconfirm -S base-devel git USER $NB_USER CMD bash # push with docker push base 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ # install latest gwion FROM fennecdjay/base:latest WORKDIR /tmp USER root RUN pacman --noconfirm -Suy RUN pacman --noconfirm -S base-devel git USER $NB_USER RUN git clone https://github.com/fennecdjay/gwion && cd gwion && \ git submodule update --init util ast && make USER root RUN cd gwion && make install USER $NB_USER CMD cd gwion && bash # push with docker push gwion