Skip to content

Commit a5a5fdc

Browse files
prevent using old sopa version in dockerfile
1 parent 0ba2ac7 commit a5a5fdc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docker/sopa-baysor/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.10-slim
22

3-
ARG SOPA_VERSION="1.0.0"
3+
ARG SOPA_VERSION
44

55
RUN apt-get update && apt-get install -y wget unzip procps && apt-get clean && rm -rf /var/lib/apt/lists/*
66

docker/sopa-cellpose/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.10-slim
22

3-
ARG SOPA_VERSION="1.0.0"
3+
ARG SOPA_VERSION
44

55
# needed for the open-cv dependency
66
RUN apt-get update && apt-get install -y \

docker/sopa-proseg/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RUN cargo install proseg
44

55
FROM python:3.10-slim
66

7-
ARG SOPA_VERSION="1.0.0"
7+
ARG SOPA_VERSION
88

99
COPY --from=rust-builder /usr/local/cargo/bin/proseg /usr/local/bin/proseg
1010

docker/sopa-stardist/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.10-slim
22

3-
ARG SOPA_VERSION="1.0.0"
3+
ARG SOPA_VERSION
44

55
# needed for the open-cv dependency
66
RUN apt-get update && apt-get install -y \

docker/sopa/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.10-slim
22

3-
ARG SOPA_VERSION="1.0.0"
3+
ARG SOPA_VERSION
44

55
# needed for the open-cv dependency
66
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)