Skip to content

Commit 686125e

Browse files
committed
fix: 文件二维码在前端拼接结果好像错误
1 parent 8d950c5 commit 686125e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ LABEL version="6"
1616
# 先安装依赖可以产生缓存
1717
WORKDIR /app
1818
COPY requirements.txt /app
19-
RUN apt-get update && apt-get install -y --no-install-recommends gcc libc-dev
19+
# 安装gcc
20+
RUN apk add --no-cache gcc musl-dev
2021
RUN /usr/local/bin/python -m pip install --upgrade pip && pip install -r requirements.txt
2122
COPY ./backend/ /app
2223
COPY --from=webui /app/fcb-fronted/dist/ /app/dist

0 commit comments

Comments
 (0)