File: Dockerfile.centos8

package info (click to toggle)
libsmbios 2.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 4,684 kB
  • sloc: ansic: 6,953; xml: 4,275; python: 3,459; cpp: 1,878; makefile: 366; sh: 309
file content (17 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM centos:8

VOLUME /output

ENV OUTPUT_DIR /build/dist
ENV BUILD_DIR /build

RUN yum install dnf-plugins-core -y
RUN yum config-manager --set-enabled PowerTools -y
RUN yum install -y \
  rpm-build gettext-devel libxml2-devel xz libtool git gcc-c++ doxygen make help2man python36-devel \
  && yum clean all

WORKDIR $BUILD_DIR
COPY . .

CMD ["./pkg/dockerfiles/centos8-entrypoint.sh"]