Updated folder structrue and README

This commit is contained in:
Anders Knutsen 2025-07-25 10:34:09 +02:00
parent b05d4f143a
commit 0569c0ab18
1 changed files with 2 additions and 2 deletions

View File

@ -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"]