From 205ab8c39e17d375bc751308fec043daa44e62cc Mon Sep 17 00:00:00 2001 From: Matthew Evans <7916000+ml-evs@users.noreply.github.com> Date: Tue, 27 Aug 2024 23:45:25 +0100 Subject: [PATCH] Create final build stage with just combined providers file --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9d97eb5..853f530 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,3 +9,7 @@ WORKDIR /app COPY Makefile schema.yaml ./ COPY src src RUN source /opt/.venv/bin/activate && make all + +FROM alpine as final + +COPY from=builder /app/combined.yaml . \ No newline at end of file