File: Dockerfile.photon

package info (click to toggle)
checksec 2.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 10,936 kB
  • sloc: sh: 1,882; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 424 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
FROM photon:3.0

# Install dependencies
RUN tdnf upgrade -y && tdnf remove toybox -y && \
    tdnf install -y build-essential git rpm-build coreutils util-linux \
    make autoconf automake gcc ncurses-devel sed tar texinfo procps-ng grep \
    findutils gzip file which libxml2 python3 python3-pip jq && \
    pip3 install --upgrade pip && pip3 install setuptools && \
    pip3 install demjson

COPY .  /root
WORKDIR /root