bugfix: 修复时区问题

This commit is contained in:
chenwj113 2023-05-21 22:12:07 +08:00
parent 688b431021
commit fcca6fd8c1
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,8 @@ RUN pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
# 应用启动 # 应用启动
FROM python:3.8.6-slim FROM python:3.8.6-slim
RUN echo "Asia/Shanghai" > /etc/timezone
COPY --from=build /install /usr/local COPY --from=build /install /usr/local
COPY . /app COPY . /app