mirror of
https://github.com/philippemerle/KubeDiagrams.git
synced 2026-02-14 18:09:52 +00:00
9 lines
265 B
Docker
9 lines
265 B
Docker
FROM docker.io/alpine/helm:3 AS helm
|
|
|
|
FROM docker.io/python:3.13-alpine AS base
|
|
RUN apk update && apk add graphviz
|
|
RUN pip install --upgrade pip && pip install PyYAML diagrams
|
|
ADD bin /usr/local/bin/
|
|
COPY --from=helm /usr/bin/helm /usr/local/bin/helm
|
|
WORKDIR /work
|