# Lab 07 — Model extraction and theft.
# Runs on the shared lab-pack base image; no extra dependencies needed.
# Build the base first (from labs/):  docker build -t aais-labs:1.0.0 .
FROM aais-labs:1.0.0

# This lab queries the shared model-api service. Point it at the running service;
# if unset / unreachable the notebook falls back to an in-process victim.
ENV MODEL_API_URL=http://model-api:8000

# Run just this lab in isolation:
#   docker run --rm -p 8888:8888 -v "$PWD":/work aais-labs:1.0.0 \
#     jupyter lab --ip=0.0.0.0 --allow-root --ServerApp.root_dir=/work
