This repository has been archived on 2024-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
2023-05-29 14:39:02 -04:00
|
|
|
FROM debian:bookworm
|
|
|
|
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get -y upgrade \
|
2023-05-30 16:10:03 -04:00
|
|
|
&& apt-get install -y git wget xz-utils build-essential gcc g++ sed \
|
|
|
|
make binutils diffutils bash patch gzip bzip2 perl tar cpio unzip \
|
|
|
|
rsync bc findutils wget python3 libncurses5-dev libncurses-dev file \
|
|
|
|
which \
|
2023-05-29 14:39:02 -04:00
|
|
|
&& adduser --quiet --disabled-password user
|
|
|
|
|
|
|
|
USER user:user
|
|
|
|
WORKDIR /home/user
|
|
|
|
COPY --chown=user:user buildroot.tar.gz /home/user
|
|
|
|
RUN tar -xvf buildroot.tar.gz && rm buildroot.tar.gz
|