mirror of
https://github.com/AsteroidOS/asteroid.git
synced 2026-04-21 23:17:38 -04:00
Upstream bitbake now requires these tools (https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=1c51e6535bfead57c7913ae74d0d71af4dfe8195).
11 lines
533 B
Docker
11 lines
533 B
Docker
FROM ubuntu:bionic
|
|
|
|
# Install packages required to build AsteroidOS
|
|
RUN apt update && apt upgrade -y && apt install -y git build-essential cpio diffstat gawk chrpath texinfo python python3 python3-distutils wget shared-mime-info zstd liblz4-tool
|
|
|
|
# Add the en_US.utf8 locale because it is required and not installed by default in minimal Ubuntu images
|
|
RUN apt-get install -y locales && rm -rf /var/lib/apt/lists/* && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
|
|
ENV LANG en_US.utf8
|
|
|
|
WORKDIR /asteroid
|