pidgin/nest

d2e5109efaf2
Improves on **Copy Code to Clipboard** tool

* Code snippets in headers no longer have a copy button attached
* Stylying
* Inline snippets are purple to match theme
* Heading snippets are a lighter purple
* Code
* Uses a variable instead of hiding the clipboard buttons with styling
* Simplify code execution
* Add **copy to** config to readme
FROM debian:buster as build
RUN set -ex && \
apt-get update && \
apt-get install -y hugo npm && \
apt-get clean && \
rm -rf /var/lib/apt/lists
COPY . /hugo
RUN set -ex && \
cd /hugo && \
hugo && \
npm ci --production && \
npm run tidy
FROM rwgrim/goserve
COPY --from=build /hugo/public /html
EXPOSE 3000/tcp