entrypoint.sh didn't help hung ssh

This commit is contained in:
Neale Pickett 2023-10-27 23:09:39 -06:00
parent b07124f63d
commit a5defa3349
2 changed files with 1 additions and 6 deletions

View File

@ -19,8 +19,7 @@ RUN CGO_ENABLED=0 make -C act_runner build
FROM base
COPY --from=runner-build /src/act_runner/act_runner /usr/local/bin
COPY entrypoint.sh /
RUN adduser -D builder
USER builder
WORKDIR /app
ENTRYPOINT [ "/entrypoint.sh" ]
ENTRYPOINT [ "/usr/local/bin/act_runner" ]

View File

@ -1,4 +0,0 @@
#! /bin/sh
exec </dev/null
exec /usr/local/bin/act_runner "$@"