pidgin/nest

Clicking on the pidgin logo will take you back to the main page
FROM debian:buster as build
RUN set -ex && \
apt-get update && \
apt-get install -y hugo && \
apt-get clean && \
rm -rf /var/lib/apt/lists
COPY . /hugo
RUN set -ex && \
cd /hugo && \
hugo -s .
FROM rwgrim/goserve
COPY --from=build /hugo/public /html
EXPOSE 3000/tcp