Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Sacred compatibility issues #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docker/Dockerfile.cuda.template
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@ RUN pip install gym==0.9.2
RUN pip install gym[atari]

# Sacred and other required packages
RUN pip install sacred GitPython
RUN pip install git+https://github.com/IDSIA/Sacred.git@d10a03b4a0087ad06e0f0874a147631e16d1864e
RUN pip install GitPython
# RUN pip install sacred GitPython

# Section to get permissions right, and avoid running inside as root {{
# Create a user matching the UID, and create/chmod home dir (== project directory)
# (uid corresponds to breord in CS network)
RUN useradd -d /project -u <<UID>> --create-home user
RUN useradd -d /project -u 1001 --create-home user
USER user
WORKDIR /project/
ADD . /project/
Expand Down