Dockerfile.doxygen

Mon, 21 Jun 2021 22:28:15 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Mon, 21 Jun 2021 22:28:15 -0500
branch
release-2.x.y
changeset 40968
a8e48ef3fc45
parent 39602
a3f2f9f7bc4e
permissions
-rw-r--r--

Start filling out the ChangeLog for 2.14.6

Testing Done:
None, it's a text file.

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

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