diff --git a/internal-lab-setup-assets/images/internet2_getting_started/Containerfile b/internal-lab-setup-assets/images/internet2_getting_started/Containerfile index a9f0435..67a8dc8 100644 --- a/internal-lab-setup-assets/images/internet2_getting_started/Containerfile +++ b/internal-lab-setup-assets/images/internet2_getting_started/Containerfile @@ -15,6 +15,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ make \ vim nano emacs +# Install Poetry to save our friends some time and confusion +RUN curl -sSL https://install.python-poetry.org | python3 - +RUN poetry self update + # Create user account "lab" for workshop participant RUN adduser --gecos "" clab && usermod -aG sudo clab