Skip to content

Instantly share code, notes, and snippets.

@supasympa
Last active December 6, 2018 23:56
Show Gist options
  • Save supasympa/7afc76c2bccdbc8e00c342b2bce0ffcf to your computer and use it in GitHub Desktop.
Save supasympa/7afc76c2bccdbc8e00c342b2bce0ffcf to your computer and use it in GitHub Desktop.
Development environment
#
# 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