Skip to content

Commit

Permalink
Added updating latest OS packages as part of base build
Browse files Browse the repository at this point in the history
  • Loading branch information
snowzach committed Feb 1, 2024
1 parent 035b245 commit efc0bfd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ doods:
- name: pytorch
type: pytorch
modelFile: ultralytics/yolov5,yolov5s
mqtt:

```
You can pass a new configuration file using an environment variable `CONFIG_FILE`. There is also a `--config` and `-c` command line option.
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.base.aarch64
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM docker.io/snowzach/tensorflow-multiarch:2.14.0-aarch64 as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y --no-install-recommends \
wget \
curl \
gnupg \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.base.amd64
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM docker.io/tensorflow/tensorflow:2.14.0 as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y --no-install-recommends \
wget \
curl \
git \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.base.amd64-gpu
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM docker.io/tensorflow/tensorflow:2.14.0-gpu as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y --no-install-recommends \
wget \
curl \
git \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.base.amd64-noavx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM docker.io/snowzach/tensorflow-multiarch:2.14.0-amd64-noavx as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y --no-install-recommends \
wget \
curl \
git \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.base.armv7l
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM docker.io/snowzach/tensorflow-multiarch:2.7.0-armv7l as base

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get -y dist-upgrade && apt-get install -y --no-install-recommends \
wget \
curl \
gnupg \
Expand Down

0 comments on commit efc0bfd

Please sign in to comment.