Fix problematic line in seeds

This commit is contained in:
riccardo
2019-09-23 18:41:38 +02:00
parent e70d3bbda6
commit 2967b4eba0
3 changed files with 12 additions and 6 deletions

View File

@@ -4,9 +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
# Install Chrome (needed by Capybara). TODO: optional installation, only if needed
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 dpkg -i /google-chrome-stable_current_amd64.deb; apt-get -fy install
RUN rm /google-chrome-stable_current_amd64.deb
RUN mkdir /app
WORKDIR /app
@@ -29,4 +30,4 @@ ENTRYPOINT ["/app/docker-entrypoint.sh"]
EXPOSE 3000
# No default CMD is provided in Dockerfile
# No default CMD is provided in Dockerfile