We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 154c919 commit 31dd59eCopy full SHA for 31dd59e
Dockerfile
@@ -25,8 +25,6 @@ RUN pip3 install --upgrade pip && pip3 install -r requirements.txt
25
26
RUN pip3 install git+https://github.com/radlab-dev-group/ml-utils.git
27
28
-COPY entrypoint.sh /srv/llm-router/entrypoint.sh
29
-
30
RUN chmod +x run-rest-api.sh && chmod +x entrypoint.sh
31
32
ENTRYPOINT ["/srv/llm-router/entrypoint.sh"]
entrypoint.sh
100644
100755
@@ -5,4 +5,5 @@ if [ "$1" = "SLEEP" ]; then
5
sleep infinity
6
else
7
echo "Starting application..."
8
- exec ./run-rest-api.sh
+ exec ./run-rest-api.sh
9
+fi
0 commit comments