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

Update Dockerfile for correct directory structure

Browse files
Files changed (1) hide show
  1. 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 /app/dify/docker/.env.example .env
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"]