Skip to content

add documentation for devcontainer setup #4

add documentation for devcontainer setup

add documentation for devcontainer setup #4

Workflow file for this run

name: devcontainer
on:
push:
branches:
- 'ts/devcontainers'
env:
REGISTRY: ghcr.io
jobs:
build-image:
name: Build image
runs-on: ubuntu-latest
# timeout-minutes: 40
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log into container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
uses: docker/metadata-action@v5
id: meta
with:
images: |
${{ env.REGISTRY }}/${{ github.repository }}/devcontainer
tags: |
type=ref,event=branch
type=sha
type=edge
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: .devcontainer/Dockerfile
push: true
target: devcontainer
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.output.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max