FROM python:3.11-slim

# This dockerfile is for developement and testing only. Do not use it for anything else.


WORKDIR /app

# Copy the pre-built wheel from dist/
COPY dist/*.whl ./

# Install the wheel and its dependencies
RUN pip install --no-cache-dir *.whl

# COT server port
EXPOSE 8087
EXPOSE 8443

CMD ["/bin/bash"]
