nomad

HCL and Docker files for Nomad deployments
git clone https://git.in0rdr.ch/nomad.git
Log | Files | Refs | Pull requests |Archive

commit b788658b9c61d2ac0f25d79879edf579cd67e294
parent 75497599c5e81c385fd6f9e48fef9fbba3a54679
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat,  8 Mar 2025 20:06:42 +0100

feat(docker): add todo.sr.ht

Diffstat:
Adocker/docker-meta/Dockerfile | 39+++++++++++++++++++++++++++++++++++++++
Adocker/docker-todo/Dockerfile | 40++++++++++++++++++++++++++++++++++++++++
2 files changed, 79 insertions(+), 0 deletions(-)

diff --git a/docker/docker-meta/Dockerfile b/docker/docker-meta/Dockerfile @@ -0,0 +1,39 @@ +# https://man.sr.ht/hacking.md +FROM docker.io/alpine:3.20 + +ARG CORE_VERSION="0.75.7" +ENV CORE_VERSION="$CORE_VERSION" +ARG META_VERSION="0.72.1" +ENV META_VERSION="$META_VERSION" + +# Install the officially documented dependencies +RUN apk update && apk add --no-cache git make go sassc minify + +# Add all missing python libraries that are not included in the pyproject.toml +# of the individual modules (such as core/meta/todo): +# https://git.sr.ht/~sircmpwn/sr.ht-apkbuilds/tree/master/item/sr.ht/core.sr.ht/APKBUILD +# +# 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 + +# Install core shared assets +RUN git clone --recurse-submodules https://git.sr.ht/~sircmpwn/core.sr.ht core \ + && cd core && git checkout $CORE_VERSION +RUN cd core && make install +RUN cd core && pip install --break-system-packages . + +# Install meta +RUN git clone https://git.sr.ht/~sircmpwn/meta.sr.ht meta \ + && cd meta && git checkout $META_VERSION +# Install the API binary +RUN cd meta && make all && make install +# Install the meta application +RUN cd meta && pip install --break-system-packages . + +# Use default config file +RUN mkdir -p /etc/sr.ht +RUN cp /meta/config.example.ini /etc/sr.ht/config.ini + +ENV PYTHONPATH=/core:/meta diff --git a/docker/docker-todo/Dockerfile b/docker/docker-todo/Dockerfile @@ -0,0 +1,40 @@ +# https://man.sr.ht/hacking.md +FROM docker.io/alpine:3.20 + +ARG CORE_VERSION="0.75.7" +ENV CORE_VERSION="$CORE_VERSION" +ARG TODO_VERSION="0.77.0" +ENV TODO_VERSION="$TODO_VERSION" + +# Install the officially documented dependencies +RUN apk update && apk add --no-cache git make go sassc minify + +# Add all missing python libraries that are not included in the pyproject.toml +# of the individual modules (such as core/meta/todo): +# https://git.sr.ht/~sircmpwn/sr.ht-apkbuilds/tree/master/item/sr.ht/core.sr.ht/APKBUILD +# +# 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 py3-tinycss2 \ + libpq-dev py3-psycopg2 python3 py3-pip + +# Install core shared assets +RUN git clone --recurse-submodules https://git.sr.ht/~sircmpwn/core.sr.ht core \ + && cd core && git checkout $CORE_VERSION +RUN cd core && make install +RUN cd core && pip install --break-system-packages . + +# Install todo +RUN git clone https://git.sr.ht/~sircmpwn/todo.sr.ht todo \ + && cd todo && git checkout $TODO_VERSION +# Install the API binary +RUN cd todo && make all && make install +# Install the todo application +RUN cd todo && pip install --break-system-packages . + +# Use default config file +RUN mkdir -p /etc/sr.ht +RUN cp /todo/config.example.ini /etc/sr.ht/config.ini + +ENV PYTHONPATH=/core:/todo