From 788230af9dc41a27f01779109220791144d9649c Mon Sep 17 00:00:00 2001
From: Richard Finlay Tweed <richardf@RFT-Mac.lan>
Date: Tue, 3 Aug 2021 21:02:51 +0100
Subject: [PATCH] Added a dockerignore based on the gitignore + git

---
 .dockerignore | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)
 create mode 100644 .dockerignore

diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..dc12af6
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,60 @@
+# --
+# OS Level
+# --
+.DS_Store
+
+# --
+# Ruby
+# --
+vendor/
+coverage/
+Gemfile.lock
+spec/fixture/site/
+spec/fixture/result/
+spec/fixture/out/
+.bundle/
+*.gem
+
+# --
+# CodeClimate
+# --
+cctr
+
+# --
+# Jekyll
+# --
+_site/
+.jekyll-cache/
+.jekyll-metadata
+.asset-cache/
+site/
+
+# --
+# Rails
+# --
+/db/*.sqlite3
+/npm-error.log
+.byebug_history
+/db/*.sqlite3-journal
+/config/application.yml
+/config/master.key
+/yarn-error.log
+/node_modules
+.pry_history
+/log
+/tmp
+
+# --
+# Yarn
+# --
+yarn.lock
+
+#
+# Editor
+#
+/.idea
+
+#
+# Git
+#
+/.git
\ No newline at end of file
-- 
GitLab