ar08 commited on
Commit
11d10b9
·
verified ·
1 Parent(s): bd35691

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -4,8 +4,10 @@ FROM ghcr.io/opendevin/sandbox:v0.1
4
  # Set working directory
5
  WORKDIR /app
6
 
7
- # Copy requirements file and application files
8
- COPY requirements.txt requirements.txt
 
 
9
  COPY . .
10
 
11
  # Install dependencies from requirements.txt
 
4
  # Set working directory
5
  WORKDIR /app
6
 
7
+ # Copy requirements file
8
+ COPY ./requirements.txt /app/requirements.txt
9
+
10
+ # Copy the rest of the application files
11
  COPY . .
12
 
13
  # Install dependencies from requirements.txt