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
# 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 characters
# 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