FROM python:3.11-slim

WORKDIR /server

COPY src/server.py .

EXPOSE 8888

CMD ["python", "server.py"]