You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
997 B
20 lines
997 B
################################################################################
|
|
## MAIN STAGE ##
|
|
################################################################################
|
|
# Copy the manager into the distroless image.
|
|
#FROM scratch
|
|
#FROM hub.sre.ink/base/distroless-static:nonroot-20210710
|
|
#FROM mirror.ccs.tencentyun.com/library/alpine:3.13
|
|
FROM alpine:3.15.0
|
|
#FROM hub.sre.ink/base/alpine:3.15.0
|
|
LABEL Description="原神工具箱"
|
|
MAINTAINER sre <sre@yangqiao.org>
|
|
RUN echo 'https://mirrors.cloud.tencent.com/alpine/v3.13/main' > /etc/apk/repositories \
|
|
&& echo 'https://mirrors.cloud.tencent.com/alpine/v3.13/community' >>/etc/apk/repositories \
|
|
&& apk update && apk add tzdata && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
|
|
&& echo "Asia/Shanghai" > /etc/timezone
|
|
WORKDIR /app
|
|
COPY genshin.bin /app/genshin.bin
|
|
RUN chmod 755 /app/genshin.bin
|
|
#USER nonroot:nonroot
|
|
ENTRYPOINT ["/app/genshin.bin"] |