From 72dd7719f7f290cbd63d0cb781e03ceb9e9935bc Mon Sep 17 00:00:00 2001 From: Grieve Date: Tue, 18 Jun 2024 19:21:24 +0800 Subject: [PATCH] Remove rust in Dockerfile (#616) --- ibis-server/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/ibis-server/Dockerfile b/ibis-server/Dockerfile index dfe8d9a2f..482b0cad7 100644 --- a/ibis-server/Dockerfile +++ b/ibis-server/Dockerfile @@ -21,11 +21,8 @@ WORKDIR /app COPY pyproject.toml ./ COPY poetry.lock ./ -COPY rust/Cargo.toml ./ -COPY rust/Cargo.lock ./ RUN poetry install --without dev -RUN poetry run maturin develop FROM python:3.11-slim-buster as runtime