diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 2afd47b..a86e216 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] +### Fixed +- Fixed missing `fontconfig` dependency for EasyLauncher plugin + ## [v3.0.1] - 2026-03-04 ### Fixed - Fixed missing `platform-tools` in Android SDK installation. It turned out that AGP downloads them during build if missing diff --git a/Dockerfile b/Dockerfile index 6c3fcf6..a12c085 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ ARG JAVA_VERSION SHELL ["/bin/bash", "-c"] -ENV ANDROID_HOME="/opt/android-sdk-linux" +ENV ANDROID_HOME="/opt/android-sdk" ENV PATH="$PATH:$ANDROID_HOME/$CMDLINE_TOOLS_DIR/$CMDLINE_TOOLS_VERSION_DIR" ENV PATH="$PATH:$ANDROID_HOME/$CMDLINE_TOOLS_DIR/$CMDLINE_TOOLS_VERSION_DIR/bin" ENV PATH="$PATH:$ANDROID_HOME/platform-tools" @@ -199,6 +199,8 @@ LABEL tag="ackee-gitlab" \ description="This Docker image serves as an environment for running Android builds on Gitlab CI in Ackee workspace" RUN apt update && apt install -y --no-install-recommends \ + # Needed for EasyLauncher + fontconfig \ # Needed for danger-js nodejs \ && rm -rf /var/lib/apt/lists/*