From d3f5232cb3ea70836e9870658c96a1ea19f0a979 Mon Sep 17 00:00:00 2001 From: "LAPTOP-8G8AGL8G\\yotam" Date: Sun, 2 Mar 2025 23:36:55 +0200 Subject: [PATCH] Copy strategies module into docker container --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 3e95e4a..f68da46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,4 +5,5 @@ COPY requirements.txt . RUN pip install -r requirements.txt COPY *.py . +COPY strategies/ ./strategies/ ENTRYPOINT [ "python", "main.py" ]