Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
|
@@ -19,9 +19,12 @@ RUN apt-get update && apt-get install -y \
|
|
| 19 |
|
| 20 |
# Copy everything
|
| 21 |
COPY . .
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
# Set model file permissions at build time
|
| 24 |
-
|
| 25 |
|
| 26 |
# Install Python dependencies
|
| 27 |
RUN pip install --no-cache-dir --upgrade pip \
|
|
|
|
| 19 |
|
| 20 |
# Copy everything
|
| 21 |
COPY . .
|
| 22 |
+
WORKDIR /app
|
| 23 |
+
COPY 2.keras /app/
|
| 24 |
+
RUN chmod 644 /app/2.keras
|
| 25 |
|
| 26 |
# Set model file permissions at build time
|
| 27 |
+
|
| 28 |
|
| 29 |
# Install Python dependencies
|
| 30 |
RUN pip install --no-cache-dir --upgrade pip \
|