FROM python:3.12-slim
WORKDIR /app
COPY server/ ./server/
COPY shared/ ./shared/
CMD ["python3", "-m", "server.server"]