1 Star 0 Fork 21

assien / Auto-GPT-Chinese

forked from JARVIS / Auto-GPT-Chinese 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 644 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Use an official Python base image from the Docker Hub
FROM python:3.11-slim
# Set environment variables
ENV PIP_NO_CACHE_DIR=yes \
PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1
# Create a non-root user and set permissions
RUN useradd --create-home appuser
WORKDIR /home/appuser
RUN chown appuser:appuser /home/appuser
USER appuser
# Copy the requirements.txt file and install the requirements
COPY --chown=appuser:appuser requirements.txt .
RUN pip install --no-cache-dir --user -r requirements.txt
# Copy the application files
COPY --chown=appuser:appuser autogpt/ .
# Set the entrypoint
ENTRYPOINT ["python", "-m", "autogpt"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/assien/auto-gpt-chinese.git
git@gitee.com:assien/auto-gpt-chinese.git
assien
auto-gpt-chinese
Auto-GPT-Chinese
stable-zh

搜索帮助

344bd9b3 5694891 D2dac590 5694891