annot.at is a service for syncing static websites, such as blogs, to atproto and standard.site annot.at
elixir atproto standardsite
3

Configure Feed

Select the types of activity you want to include in your feed.

Add missing NPM install step

Using `npm ci` for a clean install

Johanna Larsson (Jul 5, 2026, 6:35 PM +0100) e3a00046 80442f2e

+4 -1
+4 -1
Dockerfile
··· 22 22 23 23 # install build dependencies 24 24 RUN apt-get update \ 25 - && apt-get install -y --no-install-recommends build-essential git \ 25 + && apt-get install -y --no-install-recommends build-essential git nodejs npm \ 26 26 && rm -rf /var/lib/apt/lists/* 27 27 28 28 # prepare build dir ··· 56 56 RUN mix compile 57 57 58 58 COPY assets assets 59 + 60 + # Install packages 61 + RUN npm ci --prefix assets 59 62 60 63 # compile assets 61 64 RUN mix assets.deploy