FROM python:3.12-slim WORKDIR /app RUN pip install bcrypt COPY server.py . EXPOSE 8095 ENV PYTHONUNBUFFERED=1 CMD ["python3", "server.py"]