ishantvivek commited on
Commit
d64a513
·
1 Parent(s): bd524d5

Add upload folder

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -10,6 +10,9 @@ WORKDIR /app
10
  # Create the models directory explicitly
11
  RUN mkdir -p /app/models
12
 
 
 
 
13
  # Install curl or wget (depending on your preference for downloading files)
14
  RUN apt-get update && apt-get install -y curl
15
 
 
10
  # Create the models directory explicitly
11
  RUN mkdir -p /app/models
12
 
13
+ # Create the uploads directory explicitly
14
+ RUN mkdir -p /app/uploads
15
+
16
  # Install curl or wget (depending on your preference for downloading files)
17
  RUN apt-get update && apt-get install -y curl
18