Skip to content

Commit 1814ecf

Browse files
committed
Update Dockerfile system dependencies installation
Split apt update/upgrade and install commands for clarity. Changed libgdk-pixbuf2.0-0 to libgdk-pixbuf-xlib-2.0-0 in the dependency list.
1 parent af755c8 commit 1814ecf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ ENV PYTHONUNBUFFERED=1 \
99
# Set work directory
1010
WORKDIR /app
1111

12-
# Install system dependencies
13-
RUN apt-get update && apt-get install -y \
12+
RUN apt update&&apt upgrade -y
13+
RUN apt install -y \
1414
build-essential \
1515
libcairo2 \
1616
libpango-1.0-0 \
1717
libpangocairo-1.0-0 \
18-
libgdk-pixbuf2.0-0 \
18+
libgdk-pixbuf-xlib-2.0-0 \
1919
libffi-dev \
2020
shared-mime-info \
2121
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)