FlakeForge / Dockerfile.runner
random70249's picture
Upload folder using huggingface_hub
ee933ab verified
Raw
History Blame Contribute Delete
215 Bytes
FROM python:3.11-slim
WORKDIR /workspace
COPY server/requirements.docker-runner.txt /tmp/req.txt
RUN pip install --no-cache-dir -r /tmp/req.txt
# Default command is unused; FlakeForge passes pytest on docker run