Skip to content

Commit

Permalink
fix(docker): remove sudo from pip install command in dockerfile.base
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Oct 2, 2023
1 parent 29d1e36 commit 25c23db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ WORKDIR $WORKSPACE_ROOT
{% if copy_scripts_dir -%}
# Copies scripts from host into the image
COPY ./.docker/scripts/ ./scripts/
RUN if [ -f ./scripts/requirements-base.txt ]; then sudo `{{ pip_command }}` install -r ./scripts/requirements-base.txt; fi
RUN if [ -f ./scripts/requirements-base.txt ]; then `{{ pip_command }}` install -r ./scripts/requirements-base.txt; fi
{%- endif %}

# Specifies the command that will be executed when the container is run
Expand Down

0 comments on commit 25c23db

Please sign in to comment.