diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 529e404..3025fb8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -35,6 +35,13 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: "Pull Image: ${{ matrix.image }}" run: | tag=${{ github.head_ref || github.ref_name }} diff --git a/astro-default/Dockerfile b/astro-default/Dockerfile index 209077f..78e2f91 100644 --- a/astro-default/Dockerfile +++ b/astro-default/Dockerfile @@ -20,4 +20,4 @@ COPY --chmod=0755 update-notebooks.sh /usr/local/bin/before-notebook.d USER $NB_USER # For firefly -ENV FIREFLY_URL=https://irsa.ipac.caltech.edu/irsaviewer +ENV FIREFLY_URL=https://irsa.ipac.caltech.edu/irsaviewer \ No newline at end of file diff --git a/base_image/Dockerfile b/base_image/Dockerfile index 5d06af1..c3cab55 100644 --- a/base_image/Dockerfile +++ b/base_image/Dockerfile @@ -142,4 +142,4 @@ ONBUILD COPY --chown=$NB_UID:$NB_GID --chmod=644 introduction.md* /opt/scripts/ ONBUILD RUN rm -r $HOME/build ONBUILD USER ${NB_USER} -ONBUILD WORKDIR ${HOME} +ONBUILD WORKDIR ${HOME} \ No newline at end of file