nomad

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

Dockerfile (1834B)


      1 # https://man.sr.ht/hacking.md
      2 FROM docker.io/alpine:3.20
      3 
      4 # Set sr.ht versions
      5 ARG CORE_VERSION="0.75.7"
      6 ENV CORE_VERSION="$CORE_VERSION"
      7 ARG TODO_VERSION="0.77.4"
      8 ENV TODO_VERSION="$TODO_VERSION"
      9 
     10 # Set user and group
     11 ARG user=todo
     12 ARG group=todo
     13 ARG uid=1000
     14 ARG gid=1000
     15 
     16 # Install the officially documented dependencies
     17 RUN apk update && apk add --no-cache git make go sassc minify
     18 
     19 # Add all missing python libraries that are not included in the pyproject.toml
     20 # of the individual modules (such as core/meta/todo):
     21 # https://git.sr.ht/~sircmpwn/sr.ht-apkbuilds/tree/master/item/sr.ht/core.sr.ht/APKBUILD
     22 #
     23 # The psycopg adapter requires the pg_config binary, which is included in
     24 # libpq-dev:
     25 # https://www.psycopg.org/docs/install.html#build-prerequisites
     26 #
     27 # The uwsgi python3 plugin is required to run the web app
     28 # https://uwsgi-docs.readthedocs.io/en/latest/WSGIquickstart.html#installing-uwsgi-with-python-support
     29 #
     30 # Tinycss was a missing preprequisite in the core package:
     31 # https://git.sr.ht/~sircmpwn/sr.ht-apkbuilds/tree/master/item/sr.ht/core.sr.ht/APKBUILD
     32 RUN apk add --no-cache py3-tinycss2 \
     33      libpq-dev py3-psycopg2 python3 py3-pip uwsgi-python3
     34 
     35 # Install core shared assets
     36 RUN git clone --recurse-submodules https://git.sr.ht/~sircmpwn/core.sr.ht core \
     37      && cd core && git checkout $CORE_VERSION
     38 RUN cd core && make install
     39 RUN cd core && pip install --break-system-packages .
     40 
     41 # Install todo
     42 RUN git clone https://git.sr.ht/~sircmpwn/todo.sr.ht todo \
     43      && cd todo && git checkout $TODO_VERSION
     44 # Install the API binary
     45 RUN cd todo && make all && make install
     46 # Install the todo application
     47 RUN cd todo && pip install --break-system-packages .
     48 
     49 # Use default config file
     50 RUN mkdir -p /etc/sr.ht
     51 RUN cp /todo/config.example.ini /etc/sr.ht/config.ini
     52 
     53 ENV PYTHONPATH=/core:/todo
     54 
     55 USER ${uid}:${gid}