File: Dockerfile

package info (click to toggle)
rust-coreutils 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 505,620 kB
  • sloc: ansic: 103,594; asm: 28,570; sh: 8,910; python: 5,581; makefile: 472; cpp: 97; javascript: 72
file content (36 lines) | stat: -rw-r--r-- 818 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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