Skip to content

Commit

Permalink
Run apt upgrade in container to pick up fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed Feb 5, 2025
1 parent 2426f7f commit e882a61
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions models/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ ARG MORPHEUS_ROOT_HOST

WORKDIR /

RUN apt update && \
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC \
apt upgrade -y && \
apt clean && \
rm -rf /var/lib/apt/lists/*

# Copy the model repository
COPY "${MORPHEUS_ROOT_HOST}/models" "./models"

Expand Down

0 comments on commit e882a61

Please sign in to comment.