Skip to content

Commit

Permalink
🔨 优化构建
Browse files Browse the repository at this point in the history
  • Loading branch information
Cp0204 committed May 12, 2024
1 parent 2af83e9 commit 8e9451d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ FROM python:3.12.2-alpine
WORKDIR /app

# 将当前目录中的文件添加到工作目录中
ADD . /app
COPY . /app

# 安装依赖
RUN pip install flask apscheduler requests treelib
RUN pip install --no-cache-dir flask apscheduler requests treelib

# 时区
ENV TZ="Asia/Shanghai"
Expand Down

0 comments on commit 8e9451d

Please sign in to comment.