Last active
October 14, 2019 02:08
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