mirror of https://github.com/langgenius/dify.git
feat: set transformers offline default true (#1143)
This commit is contained in:
parent
877da82b06
commit
b63a685386
|
@ -3,7 +3,7 @@ FROM python:3.10-slim AS base
|
||||||
|
|
||||||
LABEL maintainer="takatost@gmail.com"
|
LABEL maintainer="takatost@gmail.com"
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends gcc g++ python3-dev libc-dev libffi-dev
|
&& apt-get install -y --no-install-recommends gcc g++ python3-dev libc-dev libffi-dev
|
||||||
|
|
||||||
COPY requirements.txt /requirements.txt
|
COPY requirements.txt /requirements.txt
|
||||||
|
@ -16,6 +16,7 @@ FROM python:3.10-slim AS builder
|
||||||
ENV FLASK_APP app.py
|
ENV FLASK_APP app.py
|
||||||
ENV EDITION SELF_HOSTED
|
ENV EDITION SELF_HOSTED
|
||||||
ENV DEPLOY_ENV PRODUCTION
|
ENV DEPLOY_ENV PRODUCTION
|
||||||
|
ENV TRANSFORMERS_OFFLINE true
|
||||||
ENV CONSOLE_API_URL http://127.0.0.1:5001
|
ENV CONSOLE_API_URL http://127.0.0.1:5001
|
||||||
ENV CONSOLE_WEB_URL http://127.0.0.1:3000
|
ENV CONSOLE_WEB_URL http://127.0.0.1:3000
|
||||||
ENV SERVICE_API_URL http://127.0.0.1:5001
|
ENV SERVICE_API_URL http://127.0.0.1:5001
|
||||||
|
|
Loading…
Reference in New Issue