From ac7e9f089e3b78e1fbfc79a3707317452f8c8c64 Mon Sep 17 00:00:00 2001 From: Firq Date: Mon, 25 Dec 2023 18:58:27 +0100 Subject: [PATCH] Small optimizations --- src/components/servantCard.astro | 1 + src/pages/blog/deploying-this-round-2.md | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/servantCard.astro b/src/components/servantCard.astro index 873d518..28e9439 100644 --- a/src/components/servantCard.astro +++ b/src/components/servantCard.astro @@ -114,6 +114,7 @@ if (bond10 === false) { .bond-ce { padding-top: 0.75rem; + width: auto; height: 3rem; } diff --git a/src/pages/blog/deploying-this-round-2.md b/src/pages/blog/deploying-this-round-2.md index 4f84624..1b536f8 100644 --- a/src/pages/blog/deploying-this-round-2.md +++ b/src/pages/blog/deploying-this-round-2.md @@ -124,11 +124,8 @@ FROM node:20.10.0-bookworm LABEL authorname="firq" WORKDIR /unlighthouse -# renovate: datasource=repology depName=debian_12/chromium versioning=loose ENV CHROMIUM_VERSION="120.0.6099.109-1~deb12u1" ENV NODE_ENV='production' - -# Update path so executable can be run globally ENV PATH="/unlighthouse/node_modules/.bin:${PATH}" RUN apt-get update && apt-get -y install --no-install-recommends chromium=${CHROMIUM_VERSION} procps && rm -rf /var/lib/apt/lists/*