We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9335835 commit 98d6940Copy full SHA for 98d6940
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:20 as ui-builder
+FROM node:20 AS ui-builder
2
3
COPY quickwit/quickwit-ui /quickwit/quickwit-ui
4
@@ -29,15 +29,14 @@ RUN apt-get -y update \
29
protobuf-compiler \
30
&& rm -rf /var/lib/apt/lists/*
31
32
-# Required by tonic
33
-RUN rustup component add rustfmt
34
-
35
COPY quickwit /quickwit
36
COPY config/quickwit.yaml /quickwit/config/quickwit.yaml
37
COPY --from=ui-builder /quickwit/quickwit-ui/build /quickwit/quickwit-ui/build
38
39
WORKDIR /quickwit
40
+RUN rustup toolchain install
+
41
RUN echo "Building workspace with feature(s) '$CARGO_FEATURES' and profile '$CARGO_PROFILE'" \
42
&& RUSTFLAGS="--cfg tokio_unstable" \
43
cargo build \
0 commit comments