Properly merge dockerfile

This commit is contained in:
Brian M. Carlson 2019-12-27 03:15:51 +00:00
parent 68e063e30c
commit 89b451e934

View File

@ -32,11 +32,7 @@ RUN apt-get update \
&& curl -sS https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/pubkey.gpg | apt-key add - 2>/dev/null \
&& echo "deb https://dl.yarnpkg.com/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt-get update \
<<<<<<< HEAD
&& apt-get -y install --no-install-recommends yarn tmux locales postgresql \
=======
&& apt-get -y install --no-install-recommends yarn tmux locales \
>>>>>>> origin/master
#
# Install eslint globally
&& npm install -g eslint \
@ -62,14 +58,11 @@ RUN curl https://raw.githubusercontent.com/brianc/dotfiles/master/.tmux.conf > ~
# install nvm
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
<<<<<<< HEAD
=======
# set up a nicer prompt
RUN git clone https://github.com/magicmonty/bash-git-prompt.git ~/.bash-git-prompt --depth=1
RUN echo "source $HOME/.bash-git-prompt/gitprompt.sh" >> ~/.bashrc
>>>>>>> origin/master
# Set the locale
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen
ENV LANG en_US.UTF-8