commit 1554330bce1add0459eee1ded71f75d0c78d1cc9
parent beb0cca096b82fc1a134fc91d88d6ca79f8bf703
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Sun, 16 Mar 2025 12:48:05 +0100
feat(docker-todo): document tinycss, add uwsgi
Diffstat:
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/docker/docker-meta/Dockerfile b/docker/docker-meta/Dockerfile
@@ -16,7 +16,7 @@ RUN apk update && apk add --no-cache git make go sassc minify
# The psycopg adapter requires the pg_config binary, which is included in
# libpq-dev:
# https://www.psycopg.org/docs/install.html#build-prerequisites
-RUN apk add --no-cache libpq-dev py3-psycopg2 python3 py3-pip
+RUN apk add --no-cache libpq-dev py3-psycopg2 python3 py3-pip uwsgi
# Install core shared assets
RUN git clone --recurse-submodules https://git.sr.ht/~sircmpwn/core.sr.ht core \
diff --git a/docker/docker-todo/Dockerfile b/docker/docker-todo/Dockerfile
@@ -3,7 +3,7 @@ FROM docker.io/alpine:3.20
ARG CORE_VERSION="0.75.7"
ENV CORE_VERSION="$CORE_VERSION"
-ARG TODO_VERSION="0.77.0"
+ARG TODO_VERSION="0.77.4"
ENV TODO_VERSION="$TODO_VERSION"
# Install the officially documented dependencies
@@ -16,8 +16,11 @@ RUN apk update && apk add --no-cache git make go sassc minify
# The psycopg adapter requires the pg_config binary, which is included in
# libpq-dev:
# https://www.psycopg.org/docs/install.html#build-prerequisites
+#
+# Tinycss was a missing preprequisite in the core package:
+# https://git.sr.ht/~sircmpwn/sr.ht-apkbuilds/tree/master/item/sr.ht/core.sr.ht/APKBUILD
RUN apk add --no-cache py3-tinycss2 \
- libpq-dev py3-psycopg2 python3 py3-pip
+ libpq-dev py3-psycopg2 python3 py3-pip uwsgi
# Install core shared assets
RUN git clone --recurse-submodules https://git.sr.ht/~sircmpwn/core.sr.ht core \