grok-mirror / Dockerfile
anyalerob's picture
Update Dockerfile
8398a54 verified
raw
history blame contribute delete
339 Bytes
FROM dairoot/grok-gateway:latest
# 设置工作目录
WORKDIR /app
# 暴露 Spaces 默认端口
EXPOSE 7860
# 创建持久化目录并链接
RUN mkdir -p /data && chmod -R 777 /data && ln -sf /data /app/.cache_data
# 设置环境变量
ENV PORT=7860
ENV SQLITE_CACHE_SIZE=-2000 # 限制 SQLite 缓存为 2MB
# 挂载
VOLUME ["/data"]