Last active
October 14, 2019 02:08
-
-
Save fennecdjay/f7b5322b8dd69463e520bf2f13962088 to your computer and use it in GitHub Desktop.
Some Dockerfiles
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
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 characters
FROM fennecdjay/base:latest | |
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 characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment