Severian commited on
Commit
fc78022
·
1 Parent(s): 3a70b86

Update Dockerfile for correct directory structure

Browse files
Files changed (1) hide show
  1. 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
- # 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"]
 
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"]