Update Dockerfile
Browse files- Dockerfile +1 -11
Dockerfile
CHANGED
@@ -1,17 +1,7 @@
|
|
1 |
# Use the specified base image
|
2 |
-
FROM ghcr.io/opendevin/opendevin
|
3 |
|
4 |
-
# Set working directory
|
5 |
-
WORKDIR /app
|
6 |
|
7 |
-
# Copy requirements file
|
8 |
-
COPY ./opendevin /app/
|
9 |
-
|
10 |
-
# Copy the rest of the application files
|
11 |
-
COPY . .
|
12 |
-
|
13 |
-
# Install dependencies from requirements.txt
|
14 |
-
RUN python -m pip install --no-cache-dir -r requirements.txt
|
15 |
|
16 |
# Expose the application port
|
17 |
EXPOSE 3000
|
|
|
1 |
# Use the specified base image
|
2 |
+
FROM docker pull ghcr.io/opendevin/opendevin:main@sha256:259d63826a06d1dd35bfec17c84be1d43715a9dec82eede87758ec5a270a5b3a
|
3 |
|
|
|
|
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
# Expose the application port
|
7 |
EXPOSE 3000
|