Skip to content

Commit

Permalink
feat(Dockerfile): add Tini init system for better process management
Browse files Browse the repository at this point in the history
- Added Tini version v0.19.0
- Configured ENTRYPOINT to use Tini
  • Loading branch information
steebchen committed Sep 20, 2024
1 parent 8b7d6b2 commit 1594739
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ RUN git clone https://github.com/Comcast/Infinite-File-Curtailer.git curtailer \

FROM debian:bookworm-slim as base

ENV TINI_VERSION v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini
ENTRYPOINT ["/tini", "--"]

ARG TARGETPLATFORM

LABEL description="Dojo is a provable game engine and toolchain for building onchain games and autonomous worlds with Cairo" \
Expand Down

0 comments on commit 1594739

Please sign in to comment.