Skip to content

Commit f1ef2ba

Browse files
committed
implemented filter flushing
1 parent e54b8b3 commit f1ef2ba

4 files changed

Lines changed: 259 additions & 207 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/insight-platform/manylinux_2_28_arm64:v0.0.5 as builder
1+
FROM ghcr.io/insight-platform/manylinux_2_28_arm64:v0.0.5 AS builder
22

33
WORKDIR /opt
44
COPY . .
@@ -7,5 +7,5 @@ ARG PYTHON_INTERPRETER
77
RUN bash /opt/docker/build-manylinux.sh
88
RUN rm -rf target
99

10-
FROM alpine:3.18 as dist
10+
FROM alpine:3.18 AS dist
1111
COPY --from=builder /opt/dist /opt/dist
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/insight-platform/manylinux_2_28_x64:v0.0.5 as builder
1+
FROM ghcr.io/insight-platform/manylinux_2_28_x64:v0.0.5 AS builder
22

33
WORKDIR /opt
44
COPY . .
@@ -7,5 +7,5 @@ ARG PYTHON_INTERPRETER
77
RUN bash /opt/docker/build-manylinux.sh
88
RUN rm -rf target
99

10-
FROM alpine:3.18 as dist
10+
FROM alpine:3.18 AS dist
1111
COPY --from=builder /opt/dist /opt/dist

docker/Dockerfile.u2204

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM ubuntu:22.04 as base
1+
FROM ubuntu:22.04 AS base
22

33
WORKDIR /opt
44
COPY docker/install-basic-deps-u2204.sh .
55
RUN bash /opt/install-basic-deps-u2204.sh
66

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

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

28-
FROM alpine:3.18 as dist
28+
FROM alpine:3.18 AS dist
2929
COPY --from=builder /opt/dist /opt/dist

0 commit comments

Comments
 (0)