We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19077c0 commit 7a5a3caCopy full SHA for 7a5a3ca
ibis-server/Dockerfile
@@ -1,12 +1,8 @@
1
FROM python:3.11-buster AS builder
2
-ARG RUST_PROFILE
+
3
# libpq-dev is required for psycopg2
4
RUN apt-get update && apt-get -y install libpq-dev
5
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
-
10
# Install justfile
11
RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin
12
@@ -24,13 +20,9 @@ ENV PYTHONUNBUFFERED=1 \
24
20
25
21
RUN pip install poetry==1.8.3
26
22
27
-COPY --from=wren-core-py . /wren-core-py
28
-COPY --from=wren-core . /wren-core
29
30
23
WORKDIR /app
31
COPY . .
32
RUN just install --without dev
33
-RUN just install-core $RUST_PROFILE
34
35
36
FROM python:3.11-slim-buster AS runtime
0 commit comments