Skip to content

Commit

Permalink
Add apt update & apt upgrade for curl to apply security patch (#38)
Browse files Browse the repository at this point in the history
Add apt update & apt upgrade for curl to apply security patch (#38)
  • Loading branch information
JannikBadenhop authored Feb 15, 2024
1 parent 2c26fe4 commit 2d81866
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ RUN apt-get install -y supervisor \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /var/log/supervisord /var/run/supervisord

# update curl to address CVE-2023-38545
RUN apt-get update && apt-get upgrade curl -y

COPY ./src /usr/nextcloud
# for mounting
RUN mkdir /var/www/html/custom_apps/ \
Expand Down

0 comments on commit 2d81866

Please sign in to comment.