Skip to content

Commit 3028c62

Browse files
Updated the docker files (#46)
Co-authored-by: paulobressan <[email protected]>
1 parent 5666206 commit 3028c62

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: docker/dockerfile.operator

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM rust:1.74-slim-buster as build
33
WORKDIR /app
44

55
RUN apt update
6-
RUN apt install -y pkg-config libssl-dev
6+
RUN apt install -y build-essential pkg-config libssl-dev cmake
77

88
COPY ./Cargo.toml ./Cargo.toml
99
COPY ./operator ./operator
@@ -13,4 +13,4 @@ RUN cargo build --release
1313

1414
FROM rust:1.74-slim-buster
1515
COPY --from=build /app/target/release/controller .
16-
CMD ["./controller"]
16+
CMD ["./controller"]

Diff for: docker/dockerfile.proxy

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM rust:1.74-slim-buster as build
33
WORKDIR /app
44

55
RUN apt update
6-
RUN apt install -y pkg-config libssl-dev
6+
RUN apt install -y build-essential pkg-config libssl-dev cmake
77

88
COPY ./Cargo.toml ./Cargo.toml
99
COPY ./operator ./operator
@@ -14,4 +14,4 @@ RUN cargo build --release
1414
FROM rust:1.74-slim-buster
1515
COPY --from=build /app/target/release/proxy .
1616
CMD ["./proxy"]
17-
LABEL service=proxy
17+
LABEL service=proxy

0 commit comments

Comments
 (0)