Dockerfile.doxygen

Mon, 07 Jun 2021 23:00:13 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Mon, 07 Jun 2021 23:00:13 -0500
branch
release-2.x.y
changeset 40936
2f616a33f583
parent 39602
a3f2f9f7bc4e
permissions
-rw-r--r--

Fix a -Wlogical-not-parentheses warning in zephyr

Testing Done:
Compiled using clang with `-Wlogical-not-parentheses` and verified the warning was gone.

Bugs closed: PIDGIN-17528

Reviewed at https://reviews.imfreedom.org/r/731/

FROM pidgin/release-builder:release-2.x.y AS build

COPY . /pidgin

RUN set -ex && \
	cd /pidgin && \
	./autogen.sh --enable-debug && \
	make -s -j$(nproc) docs

FROM rwgrim/goserve

EXPOSE 3000

COPY --from=build /pidgin/doc/html html

mercurial