From de4bc07804554794d38f13a17d4278725fd5578d Mon Sep 17 00:00:00 2001 From: josiahls Date: Sun, 5 Nov 2023 13:07:44 -0500 Subject: [PATCH] Update fastrl.Dockerfile --- fastrl.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastrl.Dockerfile b/fastrl.Dockerfile index c304322..8f3b475 100644 --- a/fastrl.Dockerfile +++ b/fastrl.Dockerfile @@ -86,7 +86,7 @@ COPY --chown=$CONTAINER_USER:$CONTAINER_GROUP . fastrl RUN sudo apt-get -y install cmake -RUN /bin/bash -c "if [[ $BUILD == 'dev' ]] ; then echo \"Development Build\" && cd fastrl/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 == 'dev' ]] ; then echo \"Development Build\" && cd fastrl/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 . --no-dependencies; fi" RUN /bin/bash -c "if [[ $BUILD == 'dev' ]] ; then echo \"Development Build\" && cd fastrl && pip install -e \".[dev]\" --no-dependencies ; fi"