diff --git a/Dockerfile b/Dockerfile index 155f1df..bbe23ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ LABEL org.opencontainers.image.source="https://github.com/muselab-d2x/d2x" # Install Python RUN apt-get update && apt-get upgrade -y && apt-get install -y python3-pip +RUN python --version + # Install GitHub CLI RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg && \ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null && \