From cc6f1489a318a10677c92d2f5275bf966048d340 Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Wed, 22 Apr 2026 22:17:02 +0200 Subject: [PATCH] fix(dsms-gateway): Dockerfile kopiert alle Dateien nach Refactoring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Das Refactoring hat main.py in models.py, routers/, config.py und dependencies.py aufgesplittet — das Dockerfile kopierte aber nur main.py. Co-Authored-By: Claude Opus 4.6 (1M context) --- dsms-gateway/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsms-gateway/Dockerfile b/dsms-gateway/Dockerfile index 5ac37dc..b04598d 100644 --- a/dsms-gateway/Dockerfile +++ b/dsms-gateway/Dockerfile @@ -14,7 +14,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application -COPY main.py . +COPY . . # Environment variables ENV IPFS_API_URL=http://dsms-node:5001