forked from SWE-agent/SWE-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Containerize application (SWE-agent#81)
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM python:3.9 | ||
|
||
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Install Python dependencies | ||
RUN pip install anthropic config datasets docker gymnasium numpy openai pandas rich ruamel.yaml swebench tenacity unidiff simple-parsing together ollama | ||
|
||
# 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 | ||
|