fix: 修复文本取件问题
This commit is contained in:
+4
-20
@@ -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"]
|
||||
Reference in New Issue
Block a user