Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐳 Remove version pinning from docker images #797

Merged
merged 4 commits into from
Dec 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .ci/cuda10.2.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,28 @@ ENV DEBIAN_FRONTEND="noninteractive"
# Update system and install wget
RUN apt-get update && \
apt-get install --no-install-recommends -y \
curl=7.58.0-2ubuntu3.20 \
wget=1.19.4-1ubuntu2 \
ffmpeg=7:3.4.2-2 \
libpython3.8=3.8.0-3ubuntu1~18.04.2 \
npm=3.5.2-0ubuntu4 \
pandoc=1.19.2.4~dfsg-1build4 \
ruby=1:2.5.1 \
software-properties-common=0.96.24.32.18 && \
curl \
wget \
ffmpeg \
libpython3.8 \
npm \
pandoc \
ruby \
software-properties-common && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Install latest git for github actions
RUN add-apt-repository ppa:git-core/ppa &&\
apt-get update && \
apt-get install --no-install-recommends -y git=1:2.38.1-0ppa1~ubuntu18.04.1 &&\
apt-get install --no-install-recommends -y git &&\
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Prettier requires atleast nodejs 10
RUN curl -sL https://deb.nodesource.com/setup_14.x > nodesetup.sh && \
bash - nodesetup.sh && \
apt-get install --no-install-recommends -y nodejs=14.20.1-1nodesource1 && \
apt-get install --no-install-recommends -y nodejs && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
20 changes: 10 additions & 10 deletions .ci/cuda11.4.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ ENV DEBIAN_FRONTEND="noninteractive"
# Update system and install wget
RUN apt-get update && \
apt-get install --no-install-recommends -y \
curl=7.68.0-1ubuntu2.13 \
wget=1.20.3-1ubuntu2 \
ffmpeg=7:4.2.7-0ubuntu0.1 \
libpython3.8=3.8.10-0ubuntu1~20.04.5 \
nodejs=10.19.0~dfsg-3ubuntu1 \
npm=6.14.4+ds-1ubuntu2 \
pandoc=2.5-3build2 \
ruby=1:2.7+1 \
software-properties-common=0.99.9.8 && \
curl \
wget \
ffmpeg \
libpython3.8 \
nodejs \
npm \
pandoc \
ruby \
software-properties-common && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Install latest git for github actions
RUN add-apt-repository ppa:git-core/ppa &&\
apt-get update && \
apt-get install --no-install-recommends -y git=1:2.38.1-0ppa1~ubuntu20.04.1 &&\
apt-get install --no-install-recommends -y git &&\
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,4 @@ repos:
- id: hadolint
name: Lint Dockerfiles
description: Runs hadolint to lint Dockerfiles
args: ["--ignore", "DL3008"]
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Fixed

- Fix remote container by removing version pinning in Docker files (<https://github.com/openvinotoolkit/anomalib/pull/797>)
- Fix PatchCore performance deterioration by reverting changes to Average Pooling layer (<https://github.com/openvinotoolkit/anomalib/pull/791>)
- Fix zero seed (<https://github.com/openvinotoolkit/anomalib/pull/766>)
- Fix #699 (<https://github.com/openvinotoolkit/anomalib/pull/700>)
Expand Down