From 90843aab03998777375cdb74bb56e2f3392b8713 Mon Sep 17 00:00:00 2001 From: JackWhh <5264499+jack_whh@user.noreply.gitee.com> Date: Thu, 18 Jul 2024 07:30:13 +0000 Subject: [PATCH] 1 Signed-off-by: JackWhh <5264499+jack_whh@user.noreply.gitee.com> --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 50b7d97..c2970ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ # Container image that runs your code FROM alpine:3.13 +RUN echo "http://mirrors.aliyun.com/alpine/v3.13/main" > /etc/apk/repositories +RUN echo "http://mirrors.aliyun.com/alpine/v3.13/community" >> /etc/apk/repositories + # Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.sh /entrypoint.sh