Capybara now works 🎉

This commit is contained in:
riggraz
2019-08-27 20:33:44 +02:00
parent cd79046071
commit b195274161
3 changed files with 54 additions and 13 deletions

View File

@@ -4,6 +4,10 @@ RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
RUN apt-get update -qq && apt-get install -y nodejs postgresql-client
RUN npm install -g yarn
# Install Chrome (needed by Capybara). TODO: optional installation, only if development
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN dpkg -i google-chrome-stable_current_amd64.deb; apt-get -fy install
RUN mkdir /app
WORKDIR /app