Update Dockerfile
Browse files- 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
|
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
|