Skip to content

Commit

Permalink
fix: Container doesn't stop with signal
Browse files Browse the repository at this point in the history
  • Loading branch information
orangedeng committed Jul 29, 2024
1 parent 1540341 commit 6792382
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
7 changes: 4 additions & 3 deletions package/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM registry.suse.com/bci/bci-minimal:15.6
FROM registry.suse.com/bci/bci-base:15.6
ARG TARGETARCH
ARG TARGETOS
ENV ARCH=${TARGETARCH:-"amd64"} OS=${TARGETOS:-"linux"}
COPY entrypoint.sh /usr/bin/
RUN zypper install -y catatonit
COPY kube-explorer-${OS}-${ARCH} /usr/bin/kube-explorer
ENTRYPOINT ["entrypoint.sh"]
ENTRYPOINT [ "/usr/bin/catatonit", "--" ]
CMD [ "kube-explorer" ]
3 changes: 0 additions & 3 deletions package/entrypoint.sh

This file was deleted.

0 comments on commit 6792382

Please sign in to comment.