6 lines
214 B
Docker
6 lines
214 B
Docker
FROM nginx:1.27.0
|
|
COPY docs/.vitepress/dist /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
RUN echo 'Asia/Shanghai' > /etc/timezone
|