We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d950c5 commit 686125eCopy full SHA for 686125e
Dockerfile
@@ -16,7 +16,8 @@ LABEL version="6"
16
# 先安装依赖可以产生缓存
17
WORKDIR /app
18
COPY requirements.txt /app
19
-RUN apt-get update && apt-get install -y --no-install-recommends gcc libc-dev
+# 安装gcc
20
+RUN apk add --no-cache gcc musl-dev
21
RUN /usr/local/bin/python -m pip install --upgrade pip && pip install -r requirements.txt
22
COPY ./backend/ /app
23
COPY --from=webui /app/fcb-fronted/dist/ /app/dist
0 commit comments