File tree Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM python:3.7-slim-bullseye
2+
3+ # get linux packages
4+ RUN apt-get -y update && apt-get -y install --no-install-recommends \
5+ libopenjp2-7-dev libopenjp2-tools \
6+ openslide-tools \
7+ libgl1 \
8+ build-essential \
9+ && pip3 --no-cache-dir install tiatoolbox \
10+ && apt-get clean \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ CMD ["python3" ]
Original file line number Diff line number Diff line change 1+ FROM python:3.8-slim-bullseye
2+
3+ # get linux packages
4+ RUN apt-get -y update && apt-get -y install --no-install-recommends \
5+ libopenjp2-7-dev libopenjp2-tools \
6+ openslide-tools \
7+ libgl1 \
8+ build-essential \
9+ && pip3 --no-cache-dir install tiatoolbox \
10+ && apt-get clean \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ CMD ["python3" ]
Original file line number Diff line number Diff line change 1+ FROM python:3.9-slim-bullseye
2+
3+ # get linux packages
4+ RUN apt-get -y update && apt-get -y install --no-install-recommends \
5+ libopenjp2-7-dev libopenjp2-tools \
6+ openslide-tools \
7+ libgl1 \
8+ build-essential \
9+ && pip3 --no-cache-dir install tiatoolbox \
10+ && apt-get clean \
11+ && rm -rf /var/lib/apt/lists/*
12+
13+ CMD ["python3" ]
You can’t perform that action at this time.
0 commit comments