Skip to content

Conversation

@onlyname0
Copy link

Summary

  • Install pip upgrade and setuptools 67.8.0 in Dockerfile to ensure dependency compatibility

Changes

  • Added pip upgrade step before installing requirements
  • Added setuptools==67.8.0 installation to prevent dependency resolution issues

Test plan

  • Build Docker image and verify all dependencies install correctly
  • Run application to ensure no import or dependency errors

# To avoid warning from flask dotenv.
RUN touch .env
RUN pip install --upgrade pip
RUN pip install setuptools==67.8.0
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pinning setuptools is actually not needed, but pip upgrade is.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant