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.
8 lines
349 B
8 lines
349 B
#FROM docker.io/library/alpine:3.20
|
|
FROM registry.ngaiot.com/local/alpine_3.20_cst:5
|
|
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"]
|
|
|