ARC_Starter/Dockerfile

11 lines
209 B
Docker

# Use an official Python runtime as a parent image
FROM python:3.11-slim
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 9000
CMD ["python", "/backend/tcp_sia_server.py"]