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

chore(sage-monorepo): update ubuntu and Python tools in devcontainer #2629

Merged
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
8 changes: 7 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
* @tschaffter

# Repository administration
/.devcontainer @tschaffter
/.github @tschaffter
/.vscode @tschaffter
/.yarn @tschaffter

# OpenChallenges
/apps/openchallenges/ @rrchai @tschaffter @vpchung
/libs/openchallenges/ @rrchai @tschaffter @vpchung

# OpenChallenges
## DB content
/apps/openchallenges/challenge-service/src/main/resources/db/ @tschaffter @vpchung @gaiaandreoletti
/apps/openchallenges/organization-service/src/main/resources/db/ @tschaffter @vpchung @gaiaandreoletti
Expand Down
8 changes: 4 additions & 4 deletions tools/devcontainers/sage/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG imageVersion=jammy-20230624
ARG imageVersion=jammy-20240227
FROM ubuntu:$imageVersion

# Safer bash scripts with 'set -euxo pipefail'
Expand All @@ -16,7 +16,7 @@ ARG yarnVersion="3.6.1"
# https://www.npmjs.com/package/@devcontainers/cli
ARG devcontainerCliVersion="0.50.2"
# https://pypi.org/project/poetry
ARG poetryVersion="1.6.1"
ARG poetryVersion="1.8.2"
# https://docs.posit.co/resources/install-r/#specify-r-version
ARG rVersion="4.2.3"
# https://aquasecurity.github.io/trivy
Expand Down Expand Up @@ -184,7 +184,7 @@ ENV PYENV_ROOT /home/${user}/.pyenv
ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH
RUN pyenv install \
3.9.2 \
3.10.6 \
3.11.0
3.10.14 \
3.11.8

CMD ["bash"]
Loading