rein0421 commited on
Commit
2a85226
·
verified ·
1 Parent(s): d01554a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -6,6 +6,8 @@ WORKDIR /app
6
 
7
  # Copy the current directory contents into /app inside the container
8
  COPY . /app
 
 
9
 
10
  # Install dependencies for OpenCV and other requirements
11
  RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 curl
 
6
 
7
  # Copy the current directory contents into /app inside the container
8
  COPY . /app
9
+ # Copy the model file into the /app directory
10
+ COPY 1026.pt /app/1026.pt
11
 
12
  # Install dependencies for OpenCV and other requirements
13
  RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 curl