构建使用基础镜像
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

10 lines
308 B

FROM registry.cn-hangzhou.aliyuncs.com/gcr_k8s_containers/distroless-nodejs:14
LABEL maintainer="Loong<ling.wenlong@free-sun.com.cn>"
RUN apk update \
&& apk add tzdata \
&& cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& echo "Asia/Shanghai" > /etc/timezone \
&& apk del tzdata