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

Tidy up dockerfile #210

Commits on Jun 9, 2024

  1. Move COPY command down the file

    By moving the COPY command under the apk command, the package installation no longer runs on every change
    NotActuallyTerry committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    c7fd215 View commit details
    Browse the repository at this point in the history
  2. Re-arrange pipenv setup steps

    We should install pipenv before copying any files, as its outcome won't be changed by any file updates.
    Additionally, copying only the pipfiles in then running pipenv install before copying the rest of the project helps prevent rebuilds.
    NotActuallyTerry committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    8a96ca5 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    c0d6bf0 View commit details
    Browse the repository at this point in the history
  2. Don't install build libraries

    pip pulls down pre-compiled versions of all the required packages, so we don't need to build anything locally.
    NotActuallyTerry committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    117b405 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2024

  1. Configuration menu
    Copy the full SHA
    8ed7cbf View commit details
    Browse the repository at this point in the history