Skip to content

Commit

Permalink
implemented filter flushing
Browse files Browse the repository at this point in the history
  • Loading branch information
bwsw committed Sep 23, 2024
1 parent e54b8b3 commit f1ef2ba
Show file tree
Hide file tree
Showing 4 changed files with 259 additions and 207 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile.manylinux_2_28_ARM64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/insight-platform/manylinux_2_28_arm64:v0.0.5 as builder
FROM ghcr.io/insight-platform/manylinux_2_28_arm64:v0.0.5 AS builder

WORKDIR /opt
COPY . .
Expand All @@ -7,5 +7,5 @@ ARG PYTHON_INTERPRETER
RUN bash /opt/docker/build-manylinux.sh
RUN rm -rf target

FROM alpine:3.18 as dist
FROM alpine:3.18 AS dist
COPY --from=builder /opt/dist /opt/dist
4 changes: 2 additions & 2 deletions docker/Dockerfile.manylinux_2_28_X64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/insight-platform/manylinux_2_28_x64:v0.0.5 as builder
FROM ghcr.io/insight-platform/manylinux_2_28_x64:v0.0.5 AS builder

WORKDIR /opt
COPY . .
Expand All @@ -7,5 +7,5 @@ ARG PYTHON_INTERPRETER
RUN bash /opt/docker/build-manylinux.sh
RUN rm -rf target

FROM alpine:3.18 as dist
FROM alpine:3.18 AS dist
COPY --from=builder /opt/dist /opt/dist
6 changes: 3 additions & 3 deletions docker/Dockerfile.u2204
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ubuntu:22.04 as base
FROM ubuntu:22.04 AS base

WORKDIR /opt
COPY docker/install-basic-deps-u2204.sh .
RUN bash /opt/install-basic-deps-u2204.sh

FROM base as chef
FROM base AS chef
ENV PATH="/root/.cargo/bin:$PATH"
RUN rustc -V

Expand All @@ -25,5 +25,5 @@ RUN maturin build --release --manylinux off --out dist
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install dist/*.whl

FROM alpine:3.18 as dist
FROM alpine:3.18 AS dist
COPY --from=builder /opt/dist /opt/dist
Loading

0 comments on commit f1ef2ba

Please sign in to comment.