8 lines
310 B
Docker
8 lines
310 B
Docker
FROM registry.zsmarter.com/public/nginx:1.22.1
|
|
COPY ./sf-ui/dist /app/nginx/html
|
|
COPY ./sf-ui/nginx.conf /etc/nginx/nginx.conf
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
|
RUN /bin/cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' >/etc/timezone
|
|
|
|
|