Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +8 -8
Dockerfile
CHANGED
@@ -13,16 +13,16 @@ RUN apt update \
|
|
13 |
&& apt-get install -y curl unzip wget gnupg2
|
14 |
|
15 |
# Install google
|
16 |
-
RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
|
21 |
# Install Edge
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
|
27 |
RUN chmod +x helper \
|
28 |
&& mkdir log tmp \
|
|
|
13 |
&& apt-get install -y curl unzip wget gnupg2
|
14 |
|
15 |
# Install google
|
16 |
+
# RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \
|
17 |
+
# && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list \
|
18 |
+
# && apt-get update \
|
19 |
+
# && apt-get install -y google-chrome-stable
|
20 |
|
21 |
# Install Edge
|
22 |
+
RUN wget -q -O - https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | tee /etc/apt/trusted.gpg.d/microsoft.gpg >/dev/null \
|
23 |
+
&& echo "deb https://packages.microsoft.com/repos/edge stable main" >> /etc/apt/sources.list.d/microsoft-edge.list \
|
24 |
+
&& apt-get update -qqy \
|
25 |
+
&& apt-get -qqy --no-install-recommends install microsoft-edge-stable
|
26 |
|
27 |
RUN chmod +x helper \
|
28 |
&& mkdir log tmp \
|