mirror of
https://github.com/uutils/coreutils.git
synced 2025-12-23 08:47:37 +00:00
36 lines
818 B
Docker
36 lines
818 B
Docker
FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
|
|
|
|
# install gnu coreutils test dependencies
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
attr \
|
|
autoconf \
|
|
automake \
|
|
autopoint \
|
|
bison \
|
|
g++ \
|
|
gcc \
|
|
gdb \
|
|
gperf \
|
|
libacl1-dev \
|
|
libattr1-dev \
|
|
libcap-dev \
|
|
libexpect-perl \
|
|
libselinux1-dev \
|
|
libsystemd-dev \
|
|
python3-pyinotify \
|
|
quilt \
|
|
texinfo \
|
|
valgrind \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# install dependencies for uutils
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
clang \
|
|
gdb \
|
|
python3-pip \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# pre-commit
|
|
RUN pip3 install --break-system-packages pre-commit
|