From c9c181b2995c1cee92f34076b380b4bf915391f7 Mon Sep 17 00:00:00 2001 From: muskit <15199219+muskit@users.noreply.github.com> Date: Fri, 26 Jan 2024 01:39:16 -0800 Subject: [PATCH] migrate dockerfile to alpine --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1a2459a..4bffb9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ -FROM ubuntu:latest +FROM alpine:latest # Install dependencies -RUN apt update && apt upgrade -y -RUN apt install -y python3 python3-pip chromium-browser chromium-chromedriver git +RUN apk update && apk add --no-cache python3 py3-pip chromium chromium-chromedriver git # Set working directory WORKDIR /app