Skip to content

Commit ea2e98f

Browse files
committed
config 0.0.3 docker image
1 parent 1a5f80b commit ea2e98f

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100

101101
test-python-2:
102102
docker:
103-
- image: hungpham2511/toppra-dep:0.0.2
103+
- image: hungpham2511/toppra-dep:0.0.3
104104

105105
working_directory: ~/repo
106106

@@ -138,7 +138,7 @@ jobs:
138138
139139
- run:
140140
command: |
141-
cp /tmp/toppra.log test-reports
141+
cp /tmp/toppra.log ~/repo/test-reports/
142142
143143
- store_test_results:
144144
path: test-reports

dockerfiles/Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:xenial-20191108
22
MAINTAINER Hung Pham <[email protected]>
33

44
ENV DEBIAN_FRONTEND=noninteractive
@@ -43,7 +43,9 @@ RUN cd /usr/src \
4343
&& rm -rf /usr/src/openrave-${RAVE_COMMIT}/build
4444

4545
# Other deps
46-
RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python-dev python3-dev python3-venv python-tk
46+
RUN apt-get install -y --no-install-recommends python-dev python3-dev python3-venv python-tk && \
47+
pip install virtualenv invoke
48+
4749
# RUN sudo apt-get install -y --no-install-recommends python-dev python3-dev python3-venv
4850

4951
# User

dockerfiles/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
USER=hungpham2511
33
IMAGE=toppra-dep
4-
VERSION=0.0.2
4+
VERSION=0.0.3
55

66
echo "Building docker image: $USER/$IMAGE:$VERSION"
77
docker build -t ${IMAGE} .

tests/conftest.py

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
def rave_env():
1616
if IMPORT_OPENRAVE:
1717
logger.warn("Starting openrave")
18-
orpy.RaveInitialize(load_all_plugins=False)
1918
orpy.RaveInitialize(load_all_plugins=True)
2019
logger.warn("Starting a new environment")
2120
env = orpy.Environment()

0 commit comments

Comments
 (0)