-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (72 loc) · 2.42 KB
/
devcontainer.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Build and push container images
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 0 * * *'
env:
REGISTRY: ghcr.io
jobs:
container:
name: container
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.PAT_TOKEN }}
- name: Extract metadata (devcontainer-core)
id: core_meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/Lightprotocol/devcontainer-core
- name: Build and push image (devcontainer-core)
uses: docker/build-push-action@v4
with:
context: devcontainer-core
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.core_meta.outputs.tags }}
labels: ${{ steps.core_meta.outputs.labels }}
- name: Extract metadata (devcontainer)
id: devcontainer_meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/Lightprotocol/devcontainer
- name: Build and push image (devcontainer)
uses: docker/build-push-action@v4
with:
context: devcontainer
platforms: linux/amd64,linux/arm64
push: true
build-args: |
BASE_IMAGE=${{ steps.core_meta.outputs.tags }}
tags: ${{ steps.devcontainer_meta.outputs.tags }}
labels: ${{ steps.devcontainer_meta.outputs.labels }}
- name: Extract metadata (solana-test-validator)
id: validator_meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/Lightprotocol/solana-test-validator
- name: Build and push image (solana-test-validator)
uses: docker/build-push-action@v4
with:
context: solana-test-validator
platforms: linux/amd64,linux/arm64
push: true
build-args: |
BASE_IMAGE=${{ steps.devcontainer_meta.outputs.tags }}
tags: ${{ steps.validator_meta.outputs.tags }}
labels: ${{ steps.validator_meta.outputs.labels }}