Skip to content

Commit

Permalink
Fix Out-of-bounds Write
Browse files Browse the repository at this point in the history
  • Loading branch information
avinhurry committed Sep 12, 2024
1 parent dff04bd commit e728bf6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ FROM ${BASE_RUBY_IMAGE} AS gems-node-modules

RUN apk -U upgrade && \
apk add --update --no-cache git gcc libc-dev make postgresql-dev build-base \
libxml2-dev libxslt-dev nodejs yarn tzdata libpq libxml2 libxslt graphviz chromium gcompat \
'aom>=3.9.1-r0'
libxml2-dev libxslt-dev nodejs yarn tzdata libpq libxml2 libxslt graphviz chromium gcompat && \
wget https://download.gnome.org/sources/gdk-pixbuf/2.42/gdk-pixbuf-2.42.12.tar.xz && \
tar -xf gdk-pixbuf-2.42.12.tar.xz && cd gdk-pixbuf-2.42.12 && \
./configure && make && make install

RUN echo "Europe/London" > /etc/timezone && \
cp /usr/share/zoneinfo/Europe/London /etc/localtime
Expand Down

0 comments on commit e728bf6

Please sign in to comment.