1 Star 0 Fork 38

chenglijie1015/Auto-GPT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 730 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Use an official Python base image from the Docker Hub
FROM python:3.11-slim
# Install git
RUN apt-get -y update
RUN apt-get -y install git
# 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-docker.txt .
RUN pip install --no-cache-dir --user -r requirements-docker.txt
# Copy the application files
COPY --chown=appuser:appuser autogpt/ ./autogpt
# Set the entrypoint
ENTRYPOINT ["python", "-m", "autogpt"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/chenglijie1015/Auto-GPT.git
[email protected]:chenglijie1015/Auto-GPT.git
chenglijie1015
Auto-GPT
Auto-GPT
master

搜索帮助