From ef7df5d0441bc49bdacdb91e7d1b20d7a4ec7188 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 15 Sep 2025 11:04:31 +0200 Subject: [PATCH] remove ignore --- .dockerignore | 1 - Dockerfile | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index 14fba462..282023b2 100644 --- a/.dockerignore +++ b/.dockerignore @@ -33,7 +33,6 @@ venv/ # Test and development files test-datastore/ tests/ -docs/ *.md !README.md diff --git a/Dockerfile b/Dockerfile index ad649ccb..3abf0bbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -86,7 +86,8 @@ EXPOSE 5000 COPY changedetectionio /app/changedetectionio # Also for OpenAPI validation wrapper - needs the YML -COPY docs /app/docs +RUN [ ! -d "/app/docs" ] && mkdir /app/docs +COPY docs/api-spec.yaml /app/docs/api-spec.yaml # Starting wrapper COPY changedetection.py /app/changedetection.py