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