dy / Dockerfile
99i's picture
Update Dockerfile
f703a9b verified
raw
history blame contribute delete
225 Bytes
FROM henrybit/dify-api:0.15.0
ENV OPENDAL_SCHEME=fs
ENV OPENDAL_ROOT=storage
# 确保创建存储目录
RUN mkdir -p storage && chmod -R 777 storage
# 从.env文件加载环境变量
COPY .env .env
ENV $(cat .env | xargs)