We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.
Thanks!i needed to fix this part for me # Install pyenvRUN set -ex \ && curl https://pyenv.run | bash \ && export PYENV_ROOT="$HOME/.pyenv" \ && export PATH="$PYENV_ROOT/bin:$PATH" \ && eval "$(pyenv init --path)" \ && eval "$(pyenv init -)" \ && eval "$(pyenv virtualenv-init -)" \ && pyenv update \ && pyenv install 3.11.9 \ && pyenv rehash
Thanks!
i needed to fix this part for me
# Install pyenv
RUN set -ex \
&& curl https://pyenv.run | bash \
&& export PYENV_ROOT="$HOME/.pyenv" \
&& export PATH="$PYENV_ROOT/bin:$PATH" \
&& eval "$(pyenv init --path)" \
&& eval "$(pyenv init -)" \
&& eval "$(pyenv virtualenv-init -)" \
&& pyenv update \
&& pyenv install 3.11.9 \
&& pyenv rehash