Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -10,8 +10,8 @@ WORKDIR /app
|
|
10 |
RUN apt-get update && apt-get install -y \
|
11 |
wget \
|
12 |
gnupg \
|
13 |
-
&& wget -q -O -
|
14 |
-
&& echo "deb [arch=amd64]
|
15 |
&& apt-get update && apt-get install -y \
|
16 |
google-chrome-stable \
|
17 |
&& rm -rf /var/lib/apt/lists/*
|
|
|
10 |
RUN apt-get update && apt-get install -y \
|
11 |
wget \
|
12 |
gnupg \
|
13 |
+
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
|
14 |
+
&& echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list \
|
15 |
&& apt-get update && apt-get install -y \
|
16 |
google-chrome-stable \
|
17 |
&& rm -rf /var/lib/apt/lists/*
|