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.
7 lines
299 B
7 lines
299 B
FROM docker.io/library/alpine:3.20
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
|
WORKDIR /app/
|
|
RUN apk add --no-cache tzdata
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' >/etc/timezone
|
|
COPY *.exe ./
|
|
CMD ["/app/app.exe"]
|
|
|