From 419a76e7b53a1c6eb5fe4d533b2b0c8ef5782112 Mon Sep 17 00:00:00 2001 From: Yichao 'Peak' Ji Date: Wed, 17 Apr 2024 16:44:58 +0000 Subject: [PATCH] build(docker): add .dockerignore --- .dockerignore | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..d347720 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,32 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Go workspace file +go.work + +# Visual Studio Code workspace settings +.vscode/ + +# macOS +.DS_Store + +# Temporary files +temp/ + +# Build artifacts +bin/ +release/ + +# Git repository +.git/ +.github/