From 0569c0ab18b40bc45c5adbc655502b5067ff3d09 Mon Sep 17 00:00:00 2001 From: Anders Knutsen Date: Fri, 25 Jul 2025 10:34:09 +0200 Subject: [PATCH] Updated folder structrue and README --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a4777ba..1e4b70b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM python:3.11-slim WORKDIR /app # Copy the Python script into the container -COPY tcp_sia_server.py /app/ +COPY backend/tcp_sia_server.py /app/ COPY requirements.txt . @@ -15,4 +15,4 @@ RUN pip install --no-cache-dir -r requirements.txt EXPOSE 9000 # Run the script -CMD ["python", "tcp_sia_server.py"] +CMD ["python", "backend/tcp_sia_server.py"]