Update Dockerfile for correct directory structure
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -13,8 +13,8 @@ COPY . .
|
|
13 |
# Change to the dify-main/docker directory
|
14 |
WORKDIR /app/dify-main/docker
|
15 |
|
16 |
-
#
|
17 |
-
RUN cp
|
18 |
|
19 |
# Run Docker Compose to build and start the services
|
20 |
CMD ["docker-compose", "up", "-d"]
|
|
|
13 |
# Change to the dify-main/docker directory
|
14 |
WORKDIR /app/dify-main/docker
|
15 |
|
16 |
+
# Correct the path to the .env.example file
|
17 |
+
RUN cp /docker/.env.example .env
|
18 |
|
19 |
# Run Docker Compose to build and start the services
|
20 |
CMD ["docker-compose", "up", "-d"]
|