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:
parent
c1e8fc795a
commit
ec76c2a7ed
1 changed files with 1 additions and 1 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue