MeiliSearch/Dockerfile

57 lines
1.7 KiB
Docker
Raw Normal View History

2021-02-28 16:56:05 +01:00
# Compile
2021-06-29 16:36:41 +02:00
FROM alpine:3.14 AS compiler
2021-02-28 16:56:05 +01:00
2021-10-16 11:37:01 +02:00
RUN apk update --quiet \
&& apk add -q --no-cache curl build-base
2021-02-28 16:56:05 +01:00
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
WORKDIR /meilisearch
COPY Cargo.lock .
COPY Cargo.toml .
2021-12-07 17:00:24 +01:00
COPY meilisearch-auth/Cargo.toml meilisearch-auth/
COPY meilisearch-error/Cargo.toml meilisearch-error/
COPY meilisearch-http/Cargo.toml meilisearch-http/
COPY meilisearch-lib/Cargo.toml meilisearch-lib/
2021-02-28 16:56:05 +01:00
ENV RUSTFLAGS="-C target-feature=-crt-static"
ENV JEMALLOC_SYS_WITH_LG_PAGE 16
2021-02-28 16:56:05 +01:00
# Create dummy main.rs files for each workspace member to be able to compile all the dependencies
RUN find . -type d -name "meilisearch-*" | xargs -I{} sh -c 'mkdir {}/src; echo "fn main() { }" > {}/src/main.rs;'
# Use `cargo build` instead of `cargo vendor` because we need to not only download but compile dependencies too
2022-02-14 11:08:57 +01:00
RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
export JEMALLOC_SYS_WITH_LG_PAGE=16; \
fi && \
$HOME/.cargo/bin/cargo build --release
# Cleanup dummy main.rs files
RUN find . -path "*/src/main.rs" -delete
ARG COMMIT_SHA
ARG COMMIT_DATE
ENV COMMIT_SHA=${COMMIT_SHA} COMMIT_DATE=${COMMIT_DATE}
COPY . .
2022-02-14 11:08:57 +01:00
RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
export JEMALLOC_SYS_WITH_LG_PAGE=16; \
fi && \
$HOME/.cargo/bin/cargo build --release
2021-02-28 16:56:05 +01:00
# Run
2021-06-29 16:36:41 +02:00
FROM alpine:3.14
2021-02-28 16:56:05 +01:00
ENV MEILI_HTTP_ADDR 0.0.0.0:7700
ENV MEILI_SERVER_PROVIDER docker
2021-02-28 16:56:05 +01:00
2021-10-16 11:37:01 +02:00
RUN apk update --quiet \
2021-12-21 13:38:39 +01:00
&& apk add -q --no-cache libgcc tini curl
2021-10-02 19:59:01 +02:00
COPY --from=compiler /meilisearch/target/release/meilisearch .
2021-02-28 16:56:05 +01:00
EXPOSE 7700/tcp
2021-10-12 20:44:59 +02:00
ENTRYPOINT ["tini", "--"]
CMD ./meilisearch