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

Resolves Multiple Issues and Enhances Docker Setup #352

Merged
merged 5 commits into from
May 28, 2023
Merged

Resolves Multiple Issues and Enhances Docker Setup #352

merged 5 commits into from
May 28, 2023

Commits on May 28, 2023

  1. 🐛 fix(Dockerfile): fix apt-get install command to properly install py…

    …thon version
    
    The apt-get install command was not properly installing the desired python version due to the quotes being removed from the package names. This commit adds quotes to the package names to ensure that the correct version of python is installed.
    ThomasSanson committed May 28, 2023
    Configuration menu
    Copy the full SHA
    f1d4a85 View commit details
    Browse the repository at this point in the history
  2. 🐛 fix(Dockerfile): use correct command to extract python version from…

    … config file
    
    The command to extract the python version from the config file was incorrect. The cut command was used instead of cat to extract the value of the python version. The cut command was updated to extract the value of the python version from the config file.
    ThomasSanson committed May 28, 2023
    Configuration menu
    Copy the full SHA
    28d76ee View commit details
    Browse the repository at this point in the history
  3. 🔧 chore(Dockerfile): add npm and ungit to the Dockerfile

    The Dockerfile has been updated to include the installation of npm and ungit. This is useful for development purposes as it allows developers to easily visualize and manage their git repositories.
    ThomasSanson committed May 28, 2023
    Configuration menu
    Copy the full SHA
    ed5a55c View commit details
    Browse the repository at this point in the history
  4. 🔧 chore(Dockerfile): add tree package to improve development experience

    The tree package has been added to the Dockerfile to improve the development experience by allowing developers to easily visualize the directory structure of the project.
    ThomasSanson committed May 28, 2023
    Configuration menu
    Copy the full SHA
    c380212 View commit details
    Browse the repository at this point in the history
  5. 🚀 feat(Dockerfile): add variables for npm and ungit versions and use …

    …them to install the specified versions
    
    The Dockerfile now includes two variables, NPM_VERSION and UNGIT_VERSION, which are used to install the specified versions of npm and ungit respectively. This allows for easier version management and ensures that the correct versions are installed.
    ThomasSanson committed May 28, 2023
    Configuration menu
    Copy the full SHA
    26346dd View commit details
    Browse the repository at this point in the history