Files
shadow/share/containers/alpine.dockerfile
Iker Pedrosa 0fc697a4b1 CI: build and run unit tests
Run `make check` after the project is built in every runner.

Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
2023-09-29 09:24:01 +02:00

20 lines
519 B
Docker

ARG OS_IMAGE="alpine:latest"
FROM "${OS_IMAGE}" AS build
RUN apk add autoconf automake build-base byacc cmocka-dev expect gettext-dev \
git libbsd-dev libeconf-dev libtool libxslt pkgconf
COPY ./ /usr/local/src/shadow/
WORKDIR /usr/local/src/shadow/
RUN ./autogen.sh --without-selinux --disable-man --disable-nls --with-yescrypt
RUN make -kj4 || true
RUN make
RUN make check
RUN make install
FROM scratch AS export
COPY --from=build /usr/local/src/shadow/config.log \
/usr/local/src/shadow/config.h ./