Files
VelocityCMDB/Dockerfile
renovate[bot] 711ea13156
All checks were successful
Release / Publish Docker Images (push) Successful in 5m4s
chore(deps): update python docker tag to v3.14.4 (#12)
Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk>
Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
2026-04-08 21:01:08 +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