lex-interviewer-chat / Dockerfile.test
bobber's picture
Sync space files (2026-04-05)
634ca1b verified
FROM python:3.10-slim
RUN pip install --no-cache-dir gradio torch transformers accelerate spaces
WORKDIR /app
COPY app.py requirements.txt ./
# Test: just import the app module — if rmsnorm_fn is None, it'll crash at model load
CMD ["python", "-c", "import app; print('✅ App module imported successfully')"]