From d851289224e941d633606c9fba52006d2a14b0ec Mon Sep 17 00:00:00 2001 From: dudtlstm Date: Tue, 3 Dec 2024 03:09:31 +0900 Subject: [PATCH] =?UTF-8?q?[Bug]=20#58=20-=20=EB=8F=84=EC=BB=A4=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=88=98=EC=A0=95=20test=2011?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 41 ++++++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/Dockerfile b/Dockerfile index d961f7a..5623012 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,25 +7,28 @@ RUN apk add --no-cache tzdata \ && cp /usr/share/zoneinfo/${TZ} /etc/localtime \ && echo "${TZ}" > /etc/timezone -# 필수 패키지 및 라이브러리 설치 -RUN apk add --no-cache \ - curl \ - wget \ - unzip \ - bash \ - libstdc++ \ - libx11 \ - libxcomposite \ - libxdamage \ - libxext \ - libxrandr \ - libxi \ - libxcb \ - libnss3 \ - libglib \ - libgobject \ - mesa-gl \ - dbus +# Edge(최신) 리포지토리 활성화 및 패키지 설치 +RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories \ + && echo "https://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \ + && apk update \ + && apk add --no-cache \ + curl \ + wget \ + unzip \ + bash \ + libstdc++ \ + libx11 \ + libxcomposite \ + libxdamage \ + libxext \ + libxrandr \ + libxi \ + libxcb \ + libnss3 \ + libglib \ + libgobject \ + mesa-gl \ + dbus # Google Chrome 설치 RUN wget -O /tmp/chrome-linux64.zip https://storage.googleapis.com/chrome-for-testing-public/131.0.6778.85/linux64/chrome-linux64.zip \