Skip to content

Instantly share code, notes, and snippets.

@fennecdjay
Last active October 14, 2019 02:08
Show Gist options
  • Save fennecdjay/f7b5322b8dd69463e520bf2f13962088 to your computer and use it in GitHub Desktop.
Save fennecdjay/f7b5322b8dd69463e520bf2f13962088 to your computer and use it in GitHub Desktop.
Some Dockerfiles
FROM archlinux/base:latest
USER root
RUN pacman --noconfirm -Suy
RUN pacman --noconfirm -S base-devel git
USER $NB_USER
CMD bash
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
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