Files
VelocityCMDB/Dockerfile
renovate[bot] 606cee2c61
All checks were successful
Enforce Conventional Commit PR Title / Validate PR Title (pull_request_target) Successful in 7s
chore(deps): update python docker tag to v3.14.4
2026-04-08 21:01:01 +00:00

21 lines
393 B
Docker

FROM --platform=amd64 python:3.14.4-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