mirror of
https://github.com/philippemerle/KubeDiagrams.git
synced 2026-02-14 10:00:08 +00:00
9 lines
270 B
Docker
9 lines
270 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 bash
|
|
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
|