chore: apt-get upgrade needs -y (#335)

This commit is contained in:
Nate Barbettini 2025-03-28 09:41:33 -07:00 committed by GitHub
parent ec76c2a7ed
commit 73520f4df5
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 upgrade && apt-get install -y \
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
libssl-dev \
python3-dev \
curl \