File: Dockerfile.rhel.build

package info (click to toggle)
libvpl 1%3A2.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 21,484 kB
  • sloc: cpp: 90,774; ansic: 5,987; python: 4,312; sh: 322; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM registry.access.redhat.com/ubi8/ubi:8.6

WORKDIR /setup
COPY bootstrap bootstrap

ENV PIP_ROOT_USER_ACTION=ignore

RUN dnf install -y git-2.43.5 && \
    ./bootstrap && \
    yum clean all && \
    rm -rf /var/cache/yum

RUN git config --global safe.directory '*'

ENV LC_ALL C.UTF-8
ENV LANG en_US.utf8

HEALTHCHECK CMD gcc --version || exit 1