File size: 1,400 Bytes
5d5c9cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# ============================================================================
# MillerBind v9 — CASF-2016 Benchmark Validation (Docker)
# BindStream Technologies
# ============================================================================
#
# For full independent validation with encrypted model weights:
#
#   docker run --rm bindstream/millerbind-v9-validation
#
# This Dockerfile is provided for transparency. The actual Docker image
# is pre-built and available from Docker Hub.
#
# SECURITY:
#   - Model weights are AES-256 encrypted at rest
#   - Python source compiled to .pyc bytecode (no readable code)
#   - Runs as non-root user with read-only filesystem
#   - No network access required — fully offline validation
#
# ============================================================================

FROM python:3.11-slim

LABEL maintainer="BindStream Technologies"
LABEL description="MillerBind v9 — CASF-2016 Benchmark Validation"
LABEL version="9.0.0"

WORKDIR /app

# NOTE: The full Docker image includes:
# - AES-256 encrypted ExtraTrees model weights (et_model.aes)
# - AES-256 encrypted XGBoost model weights (xgb_model.aes)
# - AES-256 encrypted CASF-2016 benchmark features (benchmark.aes)
# - Compiled validation bytecode (validate.pyc)
#
# None of these files contain readable model weights or source code.
# See README.md for instructions on running the pre-built image.