diff --git a/Dockerfile b/Dockerfile index 3f55c9ae7..8c2648512 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,6 @@ FROM alpine:3.10 AS compiler RUN apk update --quiet RUN apk add curl RUN apk add build-base -RUN apk add libressl-dev RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y @@ -35,7 +34,7 @@ RUN $HOME/.cargo/bin/cargo build --release # Run FROM alpine:3.10 -RUN apk add -q --no-cache libgcc tini libressl-dev +RUN apk add -q --no-cache libgcc tini COPY --from=compiler /meilisearch/target/release/meilisearch .