diff --git a/core/Cargo.toml b/core/Cargo.toml index a7dad8bc07d6..58fd09cd1e4b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -9,10 +9,6 @@ edition = "2021" name = "core-api" path = "bin/core_api.rs" -[[bin]] -name = "dust-api" -path = "bin/core_api.rs" - [[bin]] name = "oauth" path = "bin/oauth.rs" diff --git a/core/Dockerfile b/core/Dockerfile index 3c0e5e6010f6..bfd612401434 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app COPY . . -RUN cargo build --release --bin core-api --bin dust-api --bin sqlite-worker +RUN cargo build --release --bin core-api --bin sqlite-worker EXPOSE 3001