chore: 使用 Actions 构建可执行文件

This commit is contained in:
JoeanAmier
2024-08-07 21:06:01 +08:00
parent 4d531e85d9
commit 24dc8a1a53
2 changed files with 39 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ COPY LICENSE /LICENSE
COPY main.py /main.py
COPY requirements.txt /requirements.txt
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000