1 Star 0 Fork 0

PERiPlOUS/gym_gazebo_kinetic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.dockerfile.14.04 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
zhaolongkzz 提交于 2019-04-11 20:55 . update
# A Dockerfile that sets up a full Gym install with test dependencies
FROM ubuntu:14.04
# Note that latest version of mujoco-py, 1.5, does not play nicely with ubuntu 14.04 -
# requires patchelf system package not available on 14.04
# Install keyboard-configuration separately to avoid travis hanging waiting for keyboard selection
RUN \
apt-get -y update && \
apt-get install -y keyboard-configuration && \
apt-get install -y \
python-setuptools \
python-pip \
python3-dev \
libjpeg-dev \
cmake \
swig \
python-pyglet \
python3-opengl \
libboost-all-dev \
libsdl2-2.0.0 \
libsdl2-dev \
libglu1-mesa \
libglu1-mesa-dev \
libgles2-mesa-dev \
xvfb \
libav-tools \
freeglut3 \
wget \
unzip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
pip install tox
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/root/.mujoco/mjpro150/bin
# install dependencies
COPY . /usr/local/gym/
RUN cd /usr/local/gym && \
tox --notest
WORKDIR /usr/local/gym/
ENTRYPOINT ["/usr/local/gym/bin/docker_entrypoint"]
CMD ["tox"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wx_538c577e0f/gym_gazebo_kinetic.git
git@gitee.com:wx_538c577e0f/gym_gazebo_kinetic.git
wx_538c577e0f
gym_gazebo_kinetic
gym_gazebo_kinetic
kinetic

搜索帮助