chore: apt-get ugprade in dockerfile (#334)

Adds `apt-get upgrade` to ensure that system packages are up to date in
the image
This commit is contained in:
Nate Barbettini 2025-03-28 09:29:44 -07:00 committed by GitHub
parent c1e8fc795a
commit ec76c2a7ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@ ENV OTEL_ENABLE=false
ENV ARCADE_WORK_DIR=/app
# Install system dependencies
RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get upgrade && apt-get install -y \
libssl-dev \
python3-dev \
curl \