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