Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -12,8 +12,8 @@ RUN pip install tensorflow==2.13.1 mediapipe==0.10.11 opencv-python scikit-learn
|
|
| 12 |
|
| 13 |
# Copy the TFLite model (the smaller, optimized file) to the /tmp directory
|
| 14 |
# NOTE: You MUST upload the file named 'sign_language_model_lite.tflite' to your Space
|
|
|
|
| 15 |
COPY sign_language_model_lite.tflite /tmp/sign_language_model_lite.tflite
|
| 16 |
-
|
| 17 |
# Copy the final application script
|
| 18 |
COPY app.py .
|
| 19 |
|
|
|
|
| 12 |
|
| 13 |
# Copy the TFLite model (the smaller, optimized file) to the /tmp directory
|
| 14 |
# NOTE: You MUST upload the file named 'sign_language_model_lite.tflite' to your Space
|
| 15 |
+
# The file name you uploaded: sign_language_model_lite.tflite
|
| 16 |
COPY sign_language_model_lite.tflite /tmp/sign_language_model_lite.tflite
|
|
|
|
| 17 |
# Copy the final application script
|
| 18 |
COPY app.py .
|
| 19 |
|