Added tini process manager and entrypoint decl.

This commit is contained in:
Matt Todd 2020-05-20 19:26:42 +01:00
parent 690023baff
commit 1ce7e09a44
1 changed files with 3 additions and 2 deletions

View File

@ -18,11 +18,12 @@ RUN $HOME/.cargo/bin/cargo build --release
# Run # Run
FROM alpine:3.10 FROM alpine:3.10
RUN apk update --quiet RUN apk add -q --no-cache libgcc tini
RUN apk add libgcc
COPY --from=compiler /meilisearch/target/release/meilisearch . COPY --from=compiler /meilisearch/target/release/meilisearch .
ENV MEILI_HTTP_ADDR 0.0.0.0:7700 ENV MEILI_HTTP_ADDR 0.0.0.0:7700
EXPOSE 7700/tcp EXPOSE 7700/tcp
ENTRYPOINT ["tini", "--"]
CMD ./meilisearch CMD ./meilisearch