XThomasBU commited on
Commit
9338ba6
·
verified ·
1 Parent(s): 1d5bf9d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -10,6 +10,12 @@ COPY . /app
10
  # Install any needed packages specified in requirements.txt
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
 
 
 
 
 
 
13
  # Expose port 8000 for FastAPI
14
  EXPOSE 8000
15
 
 
10
  # Install any needed packages specified in requirements.txt
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ # List the contents of the /code directory to verify files are copied correctly
14
+ RUN ls -R /app
15
+
16
+ # Change permissions to allow writing to the directory
17
+ RUN chmod -R 777 /app
18
+
19
  # Expose port 8000 for FastAPI
20
  EXPOSE 8000
21