Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #12 from lcodeca/rllib-1.0.0
Browse files Browse the repository at this point in the history
Moving to RAY 1.0.0 #11
  • Loading branch information
lcodeca authored Oct 22, 2020
2 parents 480012a + 26aa658 commit dd6ca34
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions docker-image-linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ RUN pip install --upgrade pip && python -m pip install \
lz4 \
matplotlib \
numpy \
numpyencoder \
opencv-python \
pandas \
psutil \
Expand All @@ -63,10 +64,10 @@ RUN pip install --upgrade pip && python -m pip install \

# Install Python 3 dependencies for MARL
RUN python -m pip install gym && \
python -m pip install ray==0.8.7 && \
python -m pip install ray[debug]==0.8.7 && \
python -m pip install ray[rllib]==0.8.7 && \
python -m pip install ray[tune]==0.8.7
python -m pip install ray==1.0.0 && \
python -m pip install ray[debug]==1.0.0 && \
python -m pip install ray[rllib]==1.0.0 && \
python -m pip install ray[tune]==1.0.0

# Working user
RUN groupadd --gid ${GROUP_ID} alice && \
Expand All @@ -85,6 +86,9 @@ RUN cmake -D CHECK_OPTIONAL_LIBS=true -D CMAKE_BUILD_TYPE:STRING=Release /home/a
# WORKDIR /home/alice/sumo/build/cmake-build-debug
# RUN cmake -D CHECK_OPTIONAL_LIBS=true -D CMAKE_BUILD_TYPE:STRING=Debug /home/alice/sumo && \
# make -j$(nproc)
RUN echo "# SUMO" >> /home/alice/.bashrc && \
echo "export SUMO_HOME=\"/home/alice/sumo\"" >> /home/alice/.bashrc && \
echo "export PATH=\"\$SUMO_HOME/bin:\$PATH\"" >> /home/alice/.bashrc

# Directory structure
RUN mkdir -p /home/alice/devel && \
Expand Down

0 comments on commit dd6ca34

Please sign in to comment.