Update Dockerfile for correct directory structure
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -10,11 +10,11 @@ WORKDIR /app
|
|
10 |
# Copy the entire project into the container
|
11 |
COPY . .
|
12 |
|
13 |
-
# Change to the dify/docker directory
|
14 |
-
WORKDIR /app/dify/docker
|
15 |
|
16 |
# Copy the example environment file from the correct location
|
17 |
-
RUN cp
|
18 |
|
19 |
# Run Docker Compose to build and start the services
|
20 |
CMD ["docker-compose", "up", "-d"]
|
|
|
10 |
# Copy the entire project into the container
|
11 |
COPY . .
|
12 |
|
13 |
+
# Change to the dify-main/docker directory
|
14 |
+
WORKDIR /app/dify-main/docker
|
15 |
|
16 |
# Copy the example environment file from the correct location
|
17 |
+
RUN cp .env.example .env
|
18 |
|
19 |
# Run Docker Compose to build and start the services
|
20 |
CMD ["docker-compose", "up", "-d"]
|