Skip to content

Commit

Permalink
Revert "Merge pull request #100 from danielwestendorf/switch-docker-i…
Browse files Browse the repository at this point in the history
…mages"

This reverts commit b22d030, reversing
changes made to 164f5f1.
  • Loading branch information
danielwestendorf committed Mar 24, 2020
1 parent 67ef45b commit 2214de3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Dockerfile
@@ -1,4 +1,15 @@
FROM zenika/alpine-chrome:77-with-node
FROM node:12

# Install utilities
RUN apt-get update --fix-missing && apt-get -y upgrade

# Install latest chrome dev package.
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y google-chrome-stable --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /src/*.deb

# Create app directory
WORKDIR /usr/src/app
Expand Down

0 comments on commit 2214de3

Please sign in to comment.