File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM rust:1.74-slim-buster as build
3
3
WORKDIR /app
4
4
5
5
RUN apt update
6
- RUN apt install -y pkg-config libssl-dev
6
+ RUN apt install -y build-essential pkg-config libssl-dev cmake
7
7
8
8
COPY ./Cargo.toml ./Cargo.toml
9
9
COPY ./operator ./operator
@@ -13,4 +13,4 @@ RUN cargo build --release
13
13
14
14
FROM rust:1.74-slim-buster
15
15
COPY --from=build /app/target/release/controller .
16
- CMD ["./controller"]
16
+ CMD ["./controller"]
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM rust:1.74-slim-buster as build
3
3
WORKDIR /app
4
4
5
5
RUN apt update
6
- RUN apt install -y pkg-config libssl-dev
6
+ RUN apt install -y build-essential pkg-config libssl-dev cmake
7
7
8
8
COPY ./Cargo.toml ./Cargo.toml
9
9
COPY ./operator ./operator
@@ -14,4 +14,4 @@ RUN cargo build --release
14
14
FROM rust:1.74-slim-buster
15
15
COPY --from=build /app/target/release/proxy .
16
16
CMD ["./proxy"]
17
- LABEL service=proxy
17
+ LABEL service=proxy
You can’t perform that action at this time.
0 commit comments