Files
VelocityCMDB/Dockerfile
renovate[bot] eaa4b571c5
All checks were successful
Release / Publish Docker Images (push) Successful in 6m21s
chore(deps): update python docker tag to v3.14.3 (#4)
Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk>
Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
2026-02-04 22:25:09 +00:00

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