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
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
cache-from: type=registry,ref=${{ fromJSON(steps.meta_base.outputs.json).tags[1] }}
cache-to: type=inline
no-cache: ${{ github.event_name != 'pull_request' }}
# Omit licenses label as there's no pratical way to get an accurate value for all the Ubuntu packages
# Omit licenses label as there's no practical way to get an accurate value for all the Ubuntu packages
# org.opencontainers.image.licenses=
labels: |
org.opencontainers.image.title=${{ fromJSON(steps.meta_base.outputs.json).labels['org.opencontainers.image.title'] }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
cache-from: type=registry,ref=${{ fromJSON(steps.meta_dind.outputs.json).tags[1] }}
cache-to: type=inline
no-cache: ${{ github.event_name != 'pull_request' }}
# Omit licenses label as there's no pratical way to get an accurate value for all the Ubuntu packages
# Omit licenses label as there's no practical way to get an accurate value for all the Ubuntu packages
# org.opencontainers.image.licenses=
labels: |
org.opencontainers.image.title=${{ fromJSON(steps.meta_dind.outputs.json).labels['org.opencontainers.image.title'] }}
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
cache-from: type=registry,ref=${{ fromJSON(steps.meta_k8s.outputs.json).tags[1] }}
cache-to: type=inline
no-cache: ${{ github.event_name != 'pull_request' }}
# Omit licenses label as there's no pratical way to get an accurate value for all the Ubuntu packages
# Omit licenses label as there's no practical way to get an accurate value for all the Ubuntu packages
# org.opencontainers.image.licenses=
labels: |
org.opencontainers.image.title=${{ fromJSON(steps.meta_k8s.outputs.json).labels['org.opencontainers.image.title'] }}
Expand All @@ -139,8 +139,8 @@ jobs:
org.opencontainers.image.created=${{ fromJSON(steps.meta_k8s.outputs.json).labels['org.opencontainers.image.created'] }}
org.opencontainers.image.revision=${{ fromJSON(steps.meta_k8s.outputs.json).labels['org.opencontainers.image.revision'] }}

- name: Build and push Docker image (devcontainer-python3.10)
- name: Build and push Docker image (devcontainer-python3.12)
uses: devcontainers/ci@v0.3
with:
subFolder: devcontainer-python3.10
imageName: ghcr.io/gantsign/devcontainer-python3.10
subFolder: devcontainer-python3.12
imageName: ghcr.io/gantsign/devcontainer-python3.12
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"image": "mcr.microsoft.com/devcontainers/python:0-3.10",
"image": "mcr.microsoft.com/devcontainers/python:3.12",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": true,
Expand Down