Skip to content

Commit b60ed34

Browse files
committed
It works on my machine.
1 parent c1b9408 commit b60ed34

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ jobs:
2020
set -x
2121
docker build -t metacall/nodejs-c-liburing-example .
2222
docker run -p 8000:8000 --name metacall_test -d metacall/nodejs-c-liburing-example
23-
docker ps
24-
until [ "`docker inspect -f {{.State.Health.Status}} metacall_test`" == "healthy" ]; do
25-
sleep 1
26-
done
23+
# docker ps
24+
# until [ "`docker inspect -f {{.State.Health.Status}} metacall_test`" == "healthy" ]; do
25+
# sleep 1
26+
# done
27+
sleep 10
2728
curl localhost:8000 || exit 1

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ENV LOADER_LIBRARY_PATH=/usr/local/lib \
5757

5858
EXPOSE 8000
5959

60-
HEALTHCHECK --interval=1s --timeout=3s --start-period=1ms \
61-
CMD curl localhost:8000 || exit 1
60+
# HEALTHCHECK --interval=1s --timeout=3s --start-period=1ms \
61+
# CMD curl localhost:8000 || exit 1
6262

6363
CMD [ "metacallcli", "/root/index.js" ]

0 commit comments

Comments
 (0)