From 56da6cad53999935e0a61ccc77191cf2723aaa4d Mon Sep 17 00:00:00 2001 From: Bastian Rihm Date: Mon, 18 Aug 2025 12:02:43 +0200 Subject: [PATCH] Fix ssl certificate not generated on build-dev --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0a305aa..28b2004 100644 --- a/Makefile +++ b/Makefile @@ -4,10 +4,11 @@ build-prod: docker build ./ --tag "openslides-$(SERVICE)" --build-arg CONTEXT="prod" --target "prod" build-dev: + ./make-localhost-cert.sh docker build ./ --tag "openslides-$(SERVICE)-dev" --build-arg CONTEXT="dev" --target "dev" build-test: docker build ./ --tag "openslides-$(SERVICE)-tests" --build-arg CONTEXT="tests" --target "tests" run-tests: - echo "Proxy has no tests" \ No newline at end of file + echo "Proxy has no tests"