1
Fork 0
mirror of https://github.com/allthingslinux/tux.git synced 2024-10-02 16:43:12 +00:00

Alphabetise RUN instructions

This commit is contained in:
Atmois 2024-08-11 19:14:20 +01:00 committed by GitHub
parent f07fd78462
commit 63f8c501e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,14 +5,14 @@ WORKDIR /app
# Install dependencies for cairo and other utilities
RUN apt-get update && \
apt-get install -y \
build-essential \
curl \
libcairo2 \
libffi-dev \
libgdk-pixbuf2.0-0 \
libpango1.0-0 \
libpangocairo-1.0-0 \
libgdk-pixbuf2.0-0 \
libffi-dev \
shared-mime-info \
curl \
build-essential && \
shared-mime-info && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*