Files
cmake-format/cmake-format-0.6.13.dockerfile
Carl Pearson 51affb2be2 Initial build.
2024-09-30 13:32:55 -06:00

20 lines
611 B
Docker

# Stage 1: Build environment
FROM docker.io/redhat/ubi8 AS builder
LABEL maintainer="Carl Pearson <me@carlpearson.net>"
LABEL org.opencontainers.image.title="cmake-format 0.6"
LABEL description="A container with cmake-format 0.6"
LABEL org.opencontainers.image.description="A container with cmake-format 0.6"
LABEL org.opencontainers.image.source https://github.com/cwpearson/clang-format
LABEL org.opencontainers.image.licenses="GPLv3"
RUN dnf install -y \
python3 \
&& dnf clean all
ADD pip-install.sh .
RUN /bin/bash pip-install.sh
# expect caller to map $PWD into /src with -v flag
WORKDIR /src