fix: 修复文本取件问题

This commit is contained in:
lan
2024-05-06 13:02:00 +08:00
parent b365938937
commit f79be8a111
37 changed files with 27 additions and 43 deletions
+4 -20
View File
@@ -1,27 +1,11 @@
FROM node:18-alpine as webui
COPY . /app
WORKDIR /app/fcb-fronted/
ENV NPM_CONFIG_LOGLEVEL=verbose
RUN npm i
RUN npm run build-only
RUN mv dist/logo_small.png dist/assets/
FROM python:3.9.5-alpine as FileCodeBox
FROM python:3.9.5-slim-buster
LABEL author="Lan"
LABEL email="vast@tom.com"
LABEL version="6"
# 先安装依赖可以产生缓存
WORKDIR /app
COPY requirements.txt /app
# 安装gcc
RUN apk add --no-cache gcc musl-dev
RUN /usr/local/bin/python -m pip install --upgrade pip && pip install -r requirements.txt
COPY ./backend/ /app
COPY --from=webui /app/fcb-fronted/dist/ /app/dist
COPY . /app
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 12345
CMD ["python","main.py"]