ishantvivek commited on
Commit
ddf737f
·
1 Parent(s): 8f74ce0

Download the files manually

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -7,6 +7,9 @@ RUN useradd -m -u 1000 user
7
 
8
  WORKDIR /app
9
 
 
 
 
10
  # Install curl or wget (depending on your preference for downloading files)
11
  RUN apt-get update && apt-get install -y curl
12
 
 
7
 
8
  WORKDIR /app
9
 
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