Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
with:
IMAGE_NAME: dwolla/jenkins-agent-python
TAG_NAME: CORE_TAG
CORE_TAG: 3261.v9c670a_4748a_9-8-jdk11-2bbea7f
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ RUN chown -R jenkins:jenkins "${JENKINS_HOME}/.pyenv"

USER jenkins

RUN pyenv install 3.9
RUN pyenv install 3.11

RUN pyenv global 3.9
RUN pyenv global 3.11

# Prepend shims so `python3` / `pip` use pyenv (not Debian /usr/bin/python3).
ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH
Loading