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.
upsilon-docker/scripts/Dockerfile.buildroot

15 lines
499 B
Docker

FROM debian:bookworm
RUN apt-get update \
&& apt-get -y upgrade \
&& 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 \
&& 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