Skip to content

Commit fcfbcd0

Browse files
committed
chore: temp remove rust to reduce building time
1 parent a2192a6 commit fcfbcd0

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

ibis-server/Dockerfile

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
FROM python:3.11-buster AS builder
2-
ARG RUST_PROFILE
2+
33
# libpq-dev is required for psycopg2
44
RUN apt-get update && apt-get -y install libpq-dev
55

6-
# Install rust
7-
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y
8-
ENV PATH="/root/.cargo/bin:$PATH"
9-
106
# Install justfile
117
RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin
128

@@ -24,13 +20,9 @@ ENV PYTHONUNBUFFERED=1 \
2420

2521
RUN pip install poetry==1.8.3
2622

27-
COPY --from=wren-core-py . /wren-core-py
28-
COPY --from=wren-core . /wren-core
29-
3023
WORKDIR /app
3124
COPY . .
3225
RUN just install --without dev
33-
RUN just install-core $RUST_PROFILE
3426

3527

3628
FROM python:3.11-slim-buster AS runtime

0 commit comments

Comments
 (0)