Files
VelocityCMDB/Dockerfile
renovate[bot] ae9b315beb
All checks were successful
Enforce Conventional Commit PR Title / Validate PR Title (pull_request_target) Successful in 6s
chore(deps): update python docker tag to v3.14.3
2026-02-04 22:24:44 +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