ci: 构建arm64镜像

This commit is contained in:
Junyan Qin
2024-02-21 13:44:07 +00:00
parent 80858672b0
commit 59f821bf0a
2 changed files with 11 additions and 14 deletions

View File

@@ -3,6 +3,8 @@ WORKDIR /app
COPY . .
RUN python -m pip install -r requirements.txt
RUN apt update \
&& apt install gcc -y \
&& python -m pip install -r requirements.txt
CMD [ "python", "main.py" ]