Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -41,6 +41,10 @@ RUN apt-get update && apt-get install -y \
|
|
| 41 |
--no-install-recommends && \
|
| 42 |
rm -rf /var/lib/apt/lists/*
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /usr/share/keyrings/google-chrome-keyring.gpg \
|
| 45 |
&& echo 'deb [signed-by=/usr/share/keyrings/google-chrome-keyring.gpg] http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.list \
|
| 46 |
&& apt-get update \
|
|
|
|
| 41 |
--no-install-recommends && \
|
| 42 |
rm -rf /var/lib/apt/lists/*
|
| 43 |
|
| 44 |
+
RUN apt-get update && apt-get install -y \
|
| 45 |
+
coreutils \
|
| 46 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 47 |
+
|
| 48 |
RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /usr/share/keyrings/google-chrome-keyring.gpg \
|
| 49 |
&& echo 'deb [signed-by=/usr/share/keyrings/google-chrome-keyring.gpg] http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.list \
|
| 50 |
&& apt-get update \
|