All checks were successful
Release / Publish Docker Images (push) Successful in 6m21s
Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk> Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
21 lines
393 B
Docker
21 lines
393 B
Docker
FROM --platform=amd64 python:3.14.3-slim-trixie
|
|
|
|
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
|
|
|
|
USER root
|
|
|
|
RUN useradd -r -s /bin/bash -m velocitycmdb
|
|
|
|
USER velocitycmdb
|
|
|
|
ENV PATH="/home/velocitycmdb/.local/bin:$PATH"
|
|
|
|
# Install as service account
|
|
RUN pip install velocitycmdb
|
|
|
|
# Data will be stored in /home/velocitycmdb/.velocitycmdb/
|
|
|
|
ENTRYPOINT [ "velocitycmdb", "init" ]
|
|
|
|
EXPOSE 8086
|