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