From f54d7744cf2278ebade359069177beb0bb145485 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sun, 29 Jun 2025 19:20:29 +0100 Subject: [PATCH] Pass Fluxon secrets when building docker locally --- mise.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index c0cb173f..8d6e600e 100644 --- a/mise.toml +++ b/mise.toml @@ -174,7 +174,13 @@ run = 'gh gfm-preview README.md' [tasks."docker:build"] description = 'Builds and tags the application Docker image' -run = 'docker build -t fullyforged/music_library .' +run = """ +docker build \ + -t fullyforged/music_library \ + --secret id=FLUXON_KEY_FINGERPRINT \ + --secret id=FLUXON_LICENSE_KEY \ + . +""" [tasks."docker:push"] description = 'Push the image to the registry'