Skip to content

Commit

Permalink
feat(docker): add option to install latest pip and setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Aug 29, 2023
1 parent b46e038 commit 76695b4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ RUN apt-get update --fix-missing \
&& apt-get autoremove -y \
&& apt-get clean -y

{% if install_pip_requirements -%}
# Installs the latest pip and setuptools from PyPI
RUN RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
{%- endif %}
# Sets up the locale to en_US.UTF-8
RUN localedef -v -c -i en_US -f UTF-8 en_US.UTF-8 || true
# Fixes sudo error related to core dumps
Expand Down

0 comments on commit 76695b4

Please sign in to comment.