From 6ea16b7402cb55094a0222a2164980d36af68ae7 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 27 Apr 2025 00:47:21 -0400 Subject: [PATCH] Move all app files to app dir and update dockerfile --- Dockerfile | 2 +- client.py => app/client.py | 0 drb_cdb_api.py => app/drb_cdb_api.py | 0 server_api.py => app/server_api.py | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename client.py => app/client.py (100%) rename drb_cdb_api.py => app/drb_cdb_api.py (100%) rename server_api.py => app/server_api.py (100%) diff --git a/Dockerfile b/Dockerfile index b41b5c4..2de570c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the client code into the container -COPY client.py . +COPY .app . # Define environment variable for the server host # This will be set by the Makefile when running the container diff --git a/client.py b/app/client.py similarity index 100% rename from client.py rename to app/client.py diff --git a/drb_cdb_api.py b/app/drb_cdb_api.py similarity index 100% rename from drb_cdb_api.py rename to app/drb_cdb_api.py diff --git a/server_api.py b/app/server_api.py similarity index 100% rename from server_api.py rename to app/server_api.py