Skip to content

Commit 31dd59e

Browse files
committed
Fix entrypoint.sh
1 parent 154c919 commit 31dd59e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ RUN pip3 install --upgrade pip && pip3 install -r requirements.txt
2525

2626
RUN pip3 install git+https://github.com/radlab-dev-group/ml-utils.git
2727

28-
COPY entrypoint.sh /srv/llm-router/entrypoint.sh
29-
3028
RUN chmod +x run-rest-api.sh && chmod +x entrypoint.sh
3129

3230
ENTRYPOINT ["/srv/llm-router/entrypoint.sh"]

entrypoint.sh

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ if [ "$1" = "SLEEP" ]; then
55
sleep infinity
66
else
77
echo "Starting application..."
8-
exec ./run-rest-api.sh
8+
exec ./run-rest-api.sh
9+
fi

0 commit comments

Comments
 (0)