1 Star 0 Fork 0

ooeyusea/SWE-agent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 577 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM python:3.9
# Set the working directory
WORKDIR /app
# Install nodejs
RUN apt update && \
apt install -y nodejs npm && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Install Docker CLI using the official Docker installation script
RUN curl -fsSL https://get.docker.com -o get-docker.sh && \
sh get-docker.sh
# Copy the application code
# Do this last to take advantage of the docker layer mechanism
COPY . /app
# Install Python dependencies
RUN pip install -e '.'
# Install react dependencies ahead of time
RUN cd sweagent/frontend && npm install
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ooeyusea/SWE-agent.git
git@gitee.com:ooeyusea/SWE-agent.git
ooeyusea
SWE-agent
SWE-agent
327-copy-patch-button-should-appear-next-to-patch-submission

搜索帮助