Commit cfa07e1b authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Do not use absolute path for tini executable in default container entrypoint.

parent dc5c9284
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -4,7 +4,11 @@ All notable changes to this project are documented below.
The format is based on [keep a changelog](http://keepachangelog.com) and this project uses [semantic versioning](http://semver.org).

## [Unreleased]
### Changed
- Do not use absolute path for `tini` executable in default container entrypoint.

### Fixed
- Correctly read pagination cursor in notification listings.

## [2.8.0] - 2019-11-11
### Added
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ WORKDIR /nakama/
COPY --from=builder "/go/build-out/nakama" /nakama/
EXPOSE 7349 7350 7351

ENTRYPOINT ["/usr/bin/tini", "--", "/nakama/nakama"]
ENTRYPOINT ["tini", "--", "/nakama/nakama"]

HEALTHCHECK --interval=5m --timeout=10s \
  CMD curl -f http://localhost:7350/ || exit 1