Skip to content

Commit

Permalink
Fixing & thinning
Browse files Browse the repository at this point in the history
  • Loading branch information
aliberts committed Apr 24, 2024
1 parent 72eec69 commit 658d7ff
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
name: Build Docker images (scheduled)

on:
# pull_request: # TODO(aliberts): for testing, delete before merge
# branches:
# - main
pull_request: # TODO(aliberts): for testing, delete before merge
branches:
- main
workflow_dispatch:
workflow_call:
schedule:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
name: Self-hosted runner with slow tests (scheduled)

on:
pull_request: # TODO(aliberts): for testing, delete before merge
branches:
- main
# pull_request: # TODO(aliberts): for testing, delete before merge
# branches:
# - main
workflow_dispatch:
schedule:
- cron: "0 2 * * *"
Expand Down
11 changes: 9 additions & 2 deletions docker/lerobot-gpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,22 @@ ARG DEBIAN_FRONTEND=noninteractive


RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential cmake swig \
build-essential cmake \
# swig \
# ffmpeg \
# libgl1-mesa-glx libosmesa6 libosmesa6-dev libglew-dev mesa-utils libegl-dev \
libegl1-mesa libegl1-mesa-dev \
libgl1-mesa-glx \
libegl1-mesa \
# libegl1-mesa-dev \
python3-dev python3-pip
# && apt-get clean && rm -rf /var/lib/apt/lists/*

RUN ln -s /usr/bin/python3 /usr/bin/python

# ENV VENV=/opt/venv
# RUN python3 -m venv ${VENV}
# ENV PATH="${VIRTUAL_ENV}/bin:$PATH"

COPY . /lerobot
WORKDIR /lerobot
RUN pip install --upgrade --no-cache-dir pip
Expand Down

0 comments on commit 658d7ff

Please sign in to comment.