diff --git a/Dockerfile b/Dockerfile index 7a83ca2..ba11457 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,11 +29,13 @@ RUN apt-get update && \ wget gnupg ca-certificates \ fonts-liberation libasound2 libatk-bridge2.0-0 \ libdrm2 libxcomposite1 libxdamage1 libxrandr2 \ - libgbm1 libxss1 libgtk-3-0 libxshmfence1 && \ + libgbm1 libxss1 libgtk-3-0 libxshmfence1 \ + --no-install-recommends && \ wget -q -O - https://dl.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 && \ + apt-get install -y google-chrome-stable \ + --no-install-recommends && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*