From 3a1cd1e7f1d33030c5d59a6186bc19591a531f17 Mon Sep 17 00:00:00 2001 From: Chigozirim Igweamaka Date: Mon, 7 Apr 2025 02:28:44 +0100 Subject: [PATCH] chore: add .dockerignore file to exclude unnecessary files from Docker builds --- .dockerignore | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..be44689 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,28 @@ +# Binaries for programs and plugins +*.exe +*.ogg +*.m4a +*.zip +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +**/songs +.vscode + +package-lock.json + +*sqlite3 +.env \ No newline at end of file