Last active
December 6, 2018 23:56
-
-
Save supasympa/7afc76c2bccdbc8e00c342b2bce0ffcf to your computer and use it in GitHub Desktop.
Development environment
This file contains hidden or 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
# | |
# Development environment | |
# | |
FROM node:10.14.1 | |
WORKDIR /usr/local/bin | |
# install applications | |
RUN apt-get update -y | |
RUN apt-get install curl \ | |
httpie \ | |
jq \ | |
zsh \ | |
git \ | |
ranger \ | |
wget \ | |
docker -y | |
# set zsh as default shell | |
RUN zsh --version && \ | |
chsh -s $(which zsh) | |
# install micro | |
RUN curl https://getmic.ro | zsh | |
ENV EDITOR=micro | |
WORKDIR ~ | |
# install oh my zsh | |
RUN wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O - | zsh || true | |
RUN npx [email protected] i -g [email protected] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment