elrobot-training / Dockerfile
venayc's picture
Update Dockerfile
da2703b verified
Raw
History Blame Contribute Delete
280 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir uv
COPY pyproject.toml uv.lock ./
COPY smolvla/ ./smolvla/
COPY scripts/ ./scripts/
COPY data/ ./datasets/
COPY start.py .
RUN uv sync
ENV HF_HOME=/app/.cache/huggingface
EXPOSE 7860
CMD ["python", "start.py"]