From 0a34e7e718693f20f0e036f628f4cc2d9f1381bf Mon Sep 17 00:00:00 2001 From: RipleyBooya Date: Tue, 25 Feb 2025 17:26:48 +0100 Subject: [PATCH] Create docker-bake.json --- docker/docker-bake.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docker/docker-bake.json diff --git a/docker/docker-bake.json b/docker/docker-bake.json new file mode 100644 index 0000000..7850eb9 --- /dev/null +++ b/docker/docker-bake.json @@ -0,0 +1,19 @@ +{ + "group": { + "default": { + "targets": ["default", "tailscale"] + } + }, + "target": { + "default": { + "dockerfile": "Dockerfile", + "tags": ["ripleybooya/ssh-tunnel:latest"], + "platforms": ["linux/amd64", "linux/arm64"] + }, + "tailscale": { + "dockerfile": "Dockerfile.tailscale", + "tags": ["ripleybooya/ssh-tunnel:tailscale"], + "platforms": ["linux/amd64", "linux/arm64"] + } + } +}