Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs/docker best practices #9542

Open
wants to merge 24 commits into
base: main
Choose a base branch
from

Commits on Jul 24, 2020

  1. use run_pip of env in executor (python-poetry#2701)

    This ensures to use the correct python executable.
    Using `run` simply uses `sys.prefix` with a bin suffix, which is not necessarily the currently used python executable.
    
    E.g. when linking a specific python version to a custom directory, using `sys.prefix` may point to the wrong python version:
    * /usr/bin/python2.7
    * /usr/bin/python3.6
    * /usr/bin/python is a symlink to 2.7
    * /usr/bin/local/python (or any other location) is a symlink to 3.6 which shadows the former symlink
    `sys.prefix` is `/usr` in this case, which is correct, but the `python` executable there points to the wrong version.
    
    `run_pip` in the env fixes this already by using `sys.executable`, see https://github.com/python-poetry/poetry/blob/develop/poetry/utils/env.py#L964
    This should be used in the executor as well.
    jstriebel authored Jul 24, 2020
    Configuration menu
    Copy the full SHA
    4bc181b View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. feat(docs, docker): init draft

    gianfa committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    0f565f8 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. Configuration menu
    Copy the full SHA
    9afee37 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    29a7ca9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2ca1352 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    25c30d9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    45e964e View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2024

  1. feat(docs, docker): init draft

    gianfa authored and radoering committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    a9b16f2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    32d4e36 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e2d89e8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5500497 View commit details
    Browse the repository at this point in the history
  5. pre-commit

    radoering committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    8e616ad View commit details
    Browse the repository at this point in the history
  6. fix weight

    radoering committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    4e4159f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    aaa83a3 View commit details
    Browse the repository at this point in the history
  8. remove table of contents because it is created automatically in the s…

    …idebar by the framework
    radoering committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    f0b51e9 View commit details
    Browse the repository at this point in the history
  9. use relative links

    radoering committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    8d62c5a View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    08ad09c View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b8f105c View commit details
    Browse the repository at this point in the history
  12. Merge branch 'docs/docker-best-practices' of https://github.com/gianf…

    …a/poetry into docs/docker-best-practices
    gianfa committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    85c7f6e View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    439feae View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    c541178 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    452caed View commit details
    Browse the repository at this point in the history
  16. feat(docker-examples, poetry-multistage): add COPY poetry.loc

    Edit Dockerfile as suggested in
    - python-poetry#9542 (comment)
    gianfa committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    10454a3 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    246e181 View commit details
    Browse the repository at this point in the history