Signed-off-by: JackWhh <5264499+jack_whh@user.noreply.gitee.com>
This commit is contained in:
JackWhh
2024-07-18 07:30:13 +00:00
committed by Gitee
parent 6009d21da7
commit 90843aab03

View File

@@ -1,6 +1,9 @@
# Container image that runs your code # Container image that runs your code
FROM alpine:3.13 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 # Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh