Skip to content

Instantly share code, notes, and snippets.

@fennecdjay
Last active October 14, 2019 02:08
Some Dockerfiles
# 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
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment