forked from dusty-nv/jetson-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
24 lines (21 loc) · 803 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#---
# name: robosuite
# group: sim
# depends: [opencv, numba, ffmpeg, mujoco]
# test: [test.sh, test.py]
#---
ARG BASE_IMAGE
FROM ${BASE_IMAGE}
ADD https://api.github.com/repos/dusty-nv/robosuite/git/refs/heads/master /tmp/robosuite_version.json
RUN git clone https://github.com/dusty-nv/robosuite /opt/robosuite && \
apt-get update && \
apt-get install -y --no-install-recommends libhidapi-dev && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean && \
cd /opt/robosuite && \
pip3 install --verbose -e . && \
pip3 install --verbose --no-cache-dir imageio[ffmpeg] pyspacemouse 'mujoco==3.2.0'
#\
#git clone https://github.com/ARISE-Initiative/robosuite-task-zoo /opt/robosuite-task-zoo && \
#cd /opt/robosuite-task-zoo && \
#pip3 install --verbose -e .