Skip to content

Commit

Permalink
use curl instead of wget
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrtye committed Sep 25, 2024
1 parent 3236cce commit 9058f07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions novel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9058f07

Please sign in to comment.