-
Notifications
You must be signed in to change notification settings - Fork 619
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump docker armv7 image to include Skia dependencies
Use a newer base image from cross git and install clang.
- Loading branch information
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
# Copyright © SixtyFPS GmbH <[email protected]> | ||
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial | ||
|
||
FROM rustembedded/cross:armv7-unknown-linux-gnueabihf-0.2.1 | ||
# Use cross-image once https://github.com/rust-embedded/cross/pull/591 is merged & released | ||
#FROM rustembedded/cross:armv7-unknown-linux-gnueabihf-0.2.1 | ||
FROM ghcr.io/slint-ui/cross-armv7-base:1.0 | ||
|
||
RUN dpkg --add-architecture armhf && \ | ||
apt-get update && \ | ||
apt-get install --assume-yes libfontconfig1-dev:armhf libxcb1-dev:armhf libxcb-render0-dev:armhf libxcb-shape0-dev:armhf libxcb-xfixes0-dev:armhf libxkbcommon-dev:armhf python3 \ | ||
libfontconfig1-dev | ||
libfontconfig1-dev \ | ||
clang libstdc++-10-dev:armhf | ||
|
||
ENV PKG_CONFIG_PATH=/usr/lib/arm-linux-gnueabihf/pkgconfig |