Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 |
|