Spaces:
Runtime error
Runtime error
Commit
·
4d65861
1
Parent(s):
35bbfea
Update Dockerfile
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
@@ -14,7 +14,8 @@ RUN pip3 install "fschat[model_worker,webui]"
|
|
14 |
RUN pip install accelerate pandas numpy
|
15 |
|
16 |
|
17 |
-
#
|
18 |
-
|
19 |
|
20 |
-
|
|
|
|
14 |
RUN pip install accelerate pandas numpy
|
15 |
|
16 |
|
17 |
+
# Add the entrypoint script
|
18 |
+
ADD entrypoint.sh /entrypoint.sh
|
19 |
|
20 |
+
# Set the script as the entry point
|
21 |
+
ENTRYPOINT ["/entrypoint.sh"]
|