Dockerfile (1493B)
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 META_VERSION="0.72.1" 8 ENV META_VERSION="$META_VERSION" 9 10 # Set user and group 11 ARG user=meta 12 ARG group=meta 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 RUN apk add --no-cache libpq-dev py3-psycopg2 python3 py3-pip uwsgi 27 28 # Install core shared assets 29 RUN git clone --recurse-submodules https://git.sr.ht/~sircmpwn/core.sr.ht core \ 30 && cd core && git checkout $CORE_VERSION 31 RUN cd core && make install 32 RUN cd core && pip install --break-system-packages . 33 34 # Install meta 35 RUN git clone https://git.sr.ht/~sircmpwn/meta.sr.ht meta \ 36 && cd meta && git checkout $META_VERSION 37 # Install the API binary 38 RUN cd meta && make all && make install 39 # Install the meta application 40 RUN cd meta && pip install --break-system-packages . 41 42 # Use default config file 43 RUN mkdir -p /etc/sr.ht 44 RUN cp /meta/config.example.ini /etc/sr.ht/config.ini 45 46 ENV PYTHONPATH=/core:/meta 47 48 USER ${uid}:${gid}