diff --git a/novel/Dockerfile b/novel/Dockerfile index e8d2935..48f1d5f 100644 --- a/novel/Dockerfile +++ b/novel/Dockerfile @@ -3,9 +3,9 @@ FROM python:3.12-slim ENV TZ=Europe/London RUN apt-get update -RUN apt-get install -y wget gnupg curl --no-install-recommends +RUN apt-get install -y gnupg curl ca-certificates --no-install-recommends -RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - && \ +RUN curl -fsSL 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-chrome.list' RUN apt-get update RUN apt-get install -y google-chrome-stable --no-install-recommends