Skip to content

Commit

Permalink
fix: update Dockerfile to a more recent Rust compiler
Browse files Browse the repository at this point in the history
Fixes #180
  • Loading branch information
rtyler committed Jul 8, 2024
1 parent 0585509 commit 322366d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75 AS builder
FROM rust:1.79 AS builder

RUN mkdir /build
WORKDIR /build
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.DEFAULT_GOAL := help

CARGO:=$(shell which cargo)
APP=target/debug/placementd-web
APP=target/debug/kafka-delta-ingest
SOURCES=$(shell find . -type f -iname '*.rs')

$(APP): Cargo.toml $(SOURCES)
Expand Down

0 comments on commit 322366d

Please sign in to comment.