mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
81dbfd6748
# Conflicts: # README.md # api/.env.example # api/controllers/console/__init__.py # api/controllers/console/apikey.py # api/controllers/console/explore/completion.py # api/controllers/console/explore/workflow.py # api/controllers/service_api/app/workflow.py # api/controllers/service_api/wraps.py # api/controllers/web/workflow.py # api/core/model_runtime/model_providers/bedrock/get_bedrock_client.py # api/core/model_runtime/model_providers/bedrock/llm/llm.py # api/core/model_runtime/model_providers/openai_api_compatible/openai_api_compatible.yaml # api/core/model_runtime/model_providers/openai_api_compatible/text_embedding/text_embedding.py # api/models/model.py # api/poetry.lock # api/pyproject.toml # web/.env.example # web/Dockerfile # web/app/(commonLayout)/app/(appDetailLayout)/[appId]/layout.tsx # web/app/components/app/overview/appCard.tsx # web/app/components/base/chat/chat-with-history/chat-wrapper.tsx # web/app/components/base/chat/embedded-chatbot/index.tsx # web/app/components/base/mermaid/index.tsx # web/app/components/develop/index.tsx # web/app/components/develop/secret-key/secret-key-modal.tsx # web/app/components/explore/app-list/index.tsx # web/app/components/explore/item-operation/index.tsx # web/app/components/explore/sidebar/app-nav-item/index.tsx # web/app/components/explore/sidebar/index.tsx # web/app/components/header/account-setting/index.tsx # web/app/components/header/index.tsx # web/app/components/share/text-generation/index.tsx # web/app/components/tools/provider/detail.tsx # web/app/layout.tsx # web/package.json # web/service/base.ts # web/yarn.lock
89 lines
2.4 KiB
Docker
89 lines
2.4 KiB
Docker
# base image
|
|
FROM python:3.12-slim-bookworm AS base
|
|
|
|
WORKDIR /app/api
|
|
|
|
# Install Poetry
|
|
ENV POETRY_VERSION=2.0.1
|
|
|
|
# if you located in China, you can use aliyun mirror to speed up
|
|
# RUN pip install --no-cache-dir poetry==${POETRY_VERSION} -i https://mirrors.aliyun.com/pypi/simple/
|
|
|
|
RUN pip install --no-cache-dir poetry==${POETRY_VERSION}
|
|
|
|
# Configure Poetry
|
|
ENV POETRY_CACHE_DIR=/tmp/poetry_cache
|
|
ENV POETRY_NO_INTERACTION=1
|
|
ENV POETRY_VIRTUALENVS_IN_PROJECT=true
|
|
ENV POETRY_VIRTUALENVS_CREATE=true
|
|
ENV POETRY_REQUESTS_TIMEOUT=15
|
|
|
|
FROM base AS packages
|
|
|
|
# if you located in China, you can use aliyun mirror to speed up
|
|
# RUN sed -i 's@deb.debian.org@mirrors.aliyun.com@g' /etc/apt/sources.list.d/debian.sources
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends gcc g++ libc-dev libffi-dev libgmp-dev libmpfr-dev libmpc-dev
|
|
|
|
# Install Python dependencies
|
|
COPY pyproject.toml poetry.lock ./
|
|
RUN poetry lock && poetry install --sync --no-cache --no-root
|
|
|
|
# production stage
|
|
FROM base AS production
|
|
|
|
ENV FLASK_APP=app.py
|
|
ENV EDITION=SELF_HOSTED
|
|
ENV DEPLOY_ENV=PRODUCTION
|
|
ENV CONSOLE_API_URL=http://127.0.0.1:5001
|
|
ENV CONSOLE_WEB_URL=http://127.0.0.1:3000
|
|
ENV SERVICE_API_URL=http://127.0.0.1:5001
|
|
ENV APP_WEB_URL=http://127.0.0.1:3000
|
|
|
|
EXPOSE 5001
|
|
|
|
# set timezone
|
|
ENV TZ=UTC
|
|
|
|
WORKDIR /app/api
|
|
|
|
RUN \
|
|
apt-get update \
|
|
# Install dependencies
|
|
&& apt-get install -y --no-install-recommends \
|
|
# basic environment
|
|
curl nodejs libgmp-dev libmpfr-dev libmpc-dev \
|
|
# For Security
|
|
expat libldap-2.5-0 perl libsqlite3-0 zlib1g \
|
|
# install a package to improve the accuracy of guessing mime type and file extension
|
|
media-types \
|
|
# install libmagic to support the use of python-magic guess MIMETYPE
|
|
libmagic1 \
|
|
&& apt-get autoremove -y \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy Python environment and packages
|
|
ENV VIRTUAL_ENV=/app/api/.venv
|
|
COPY --from=packages ${VIRTUAL_ENV} ${VIRTUAL_ENV}
|
|
ENV PATH="${VIRTUAL_ENV}/bin:${PATH}"
|
|
|
|
# Download nltk data
|
|
RUN python -c "import nltk; nltk.download('punkt'); nltk.download('averaged_perceptron_tagger')"
|
|
|
|
ENV TIKTOKEN_CACHE_DIR=/app/api/.tiktoken_cache
|
|
|
|
RUN python -c "import tiktoken; tiktoken.encoding_for_model('gpt2')"
|
|
|
|
# Copy source code
|
|
COPY . /app/api/
|
|
|
|
# Copy entrypoint
|
|
COPY docker/entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ARG COMMIT_SHA
|
|
ENV COMMIT_SHA=${COMMIT_SHA}
|
|
|
|
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]
|