Merge pull request #273 from niujinkai/master

配置为CST时区
This commit is contained in:
lanyulei 2022-07-19 23:34:13 +08:00 committed by GitHub
commit f411730bf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,9 @@ FROM node:14.18-alpine as web
WORKDIR /opt/workflow
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories
RUN apk update && \
apk add --no-cache git && \