This is an automated email from the ASF dual-hosted git repository.

zhangliang2022 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new b6ff9b343 fix: update apk to apt-get on tini (#4231)
b6ff9b343 is described below

commit b6ff9b343d623fb49fe2942a846d0336fde0a7fb
Author: abeizn <[email protected]>
AuthorDate: Wed Jan 18 13:50:05 2023 +0800

    fix: update apk to apt-get on tini (#4231)
---
 backend/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/backend/Dockerfile b/backend/Dockerfile
index caa6725fa..89ea2ffd5 100644
--- a/backend/Dockerfile
+++ b/backend/Dockerfile
@@ -157,7 +157,7 @@ COPY --from=build /app/resources/tap /app/resources/tap
 ENV PATH="/app/bin:${PATH}"
 
 # add tini, prevent zombie process
-RUN apk add --no-cache tini
+RUN apt-get install -y tini
 ENTRYPOINT ["/sbin/tini", "--"]
 
 CMD ["lake"]

Reply via email to