Updated folder structrue and README
This commit is contained in:
parent
b05d4f143a
commit
0569c0ab18
|
|
@ -5,7 +5,7 @@ FROM python:3.11-slim
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Copy the Python script into the container
|
# Copy the Python script into the container
|
||||||
COPY tcp_sia_server.py /app/
|
COPY backend/tcp_sia_server.py /app/
|
||||||
|
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
|
|
||||||
|
|
@ -15,4 +15,4 @@ RUN pip install --no-cache-dir -r requirements.txt
|
||||||
EXPOSE 9000
|
EXPOSE 9000
|
||||||
|
|
||||||
# Run the script
|
# Run the script
|
||||||
CMD ["python", "tcp_sia_server.py"]
|
CMD ["python", "backend/tcp_sia_server.py"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue