Skip to content

Commit

Permalink
Update cli Dockerfile to a newer ubuntu release, newer rust release. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Omega359 authored May 24, 2024
1 parent 4b7b5ab commit 3e4e09a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

FROM rust:1.73-bullseye as builder
FROM rust:1.78-bookworm as builder

COPY . /usr/src/arrow-datafusion
COPY ./datafusion /usr/src/arrow-datafusion/datafusion
Expand All @@ -28,7 +28,7 @@ RUN rustup component add rustfmt

RUN cargo build --release

FROM debian:bullseye-slim
FROM debian:bookworm-slim

COPY --from=builder /usr/src/arrow-datafusion/datafusion-cli/target/release/datafusion-cli /usr/local/bin

Expand Down

0 comments on commit 3e4e09a

Please sign in to comment.