From 24b36c031a6f63bde8fc23e7d85c49d47ca1ce2f Mon Sep 17 00:00:00 2001 From: Paul Schweigert Date: Tue, 3 Sep 2024 15:13:35 -0400 Subject: [PATCH] don't add local gateway/media directory to container image (#1482) Signed-off-by: Paul S. Schweigert Fixes #1473 The `gateway/media` directory is currently ignored by git. If the user happens to have created that directory locally for some reason (running tests?) then the docker build fails. This patch implements a simple fix for docker to ignore the local media diretory when building the container image. --- .dockerignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.dockerignore b/.dockerignore index da1346038..07df00754 100644 --- a/.dockerignore +++ b/.dockerignore @@ -44,3 +44,4 @@ static stats *.sqlite3 tests +gateway/media \ No newline at end of file