Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
josiahls committed Oct 9, 2023
1 parent bcbb4aa commit 106b38c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fastrl.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ COPY --chown=$CONTAINER_USER:$CONTAINER_GROUP . fastrl

RUN /bin/bash -c "if [[ $BUILD == 'dev' ]] ; then echo \"Development Build\" && cd data && mv pyproject.toml pyproject.toml_tmp && pip install -e . --no-dependencies && mv pyproject.toml_tmp pyproject.toml && cd ../; fi"

RUN /bin/bash -c "if [[ $BUILD == 'prod' ]] ; then echo \"Production Build\" && cd fastrl && pip install .[torchdata] --no-dependencies; fi"
RUN /bin/bash -c "if [[ $BUILD == 'prod' ]] ; then echo \"Production Build\" && cd fastrl && pip install \".[torchdata]\" --no-dependencies; fi"
RUN /bin/bash -c "if [[ $BUILD == 'dev' ]] ; then echo \"Development Build\" && cd fastrl && pip install -e \".[dev]\" --no-dependencies ; fi"

# RUN echo '#!/bin/bash\npip install -e .[dev] --no-dependencies && xvfb-run -s "-screen 0 1400x900x24" jupyter lab --ip=0.0.0.0 --port=8080 --allow-root --no-browser --NotebookApp.token='' --NotebookApp.password=''' >> run_jupyter.sh
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ license = apache2
status = 2
dep_links = https://download.pytorch.org/whl/nightly/cu117
requirements = torch>=2.0.0
data_requirements = git+https://github.com/josiahls/data.git@main#egg=torchdata
data_requirements = 'git+https://github.com/josiahls/data.git@main#egg=torchdata'
pip_requirements = gymnasium>=0.27.1 pyopengl pyglet tensorboard pygame pandas scipy scikit-learn fastcore fastprogress
#nbformat>=4.2.0,<5.*
conda_requirements =
Expand Down

0 comments on commit 106b38c

Please sign in to comment.