Skip to content

Commit a390dff

Browse files
committed
ci: add dockerfile and workflow action for releasing image
Dockerfile and Github action which builds and releases Docker image. Docker image will have Nordic toolchain bundle inside it. Signed-off-by: Kari Hamalainen <kari.hamalainen@nordicsemi.no>
1 parent a88d8f3 commit a390dff

File tree

3 files changed

+65
-0
lines changed

3 files changed

+65
-0
lines changed

.github/workflows/docker.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build and Push Docker Image
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: Set up Docker Buildx
17+
uses: docker/setup-buildx-action@v3
18+
19+
- name: Login to GitHub Container Registry
20+
uses: docker/login-action@v3
21+
with:
22+
registry: ghcr.io
23+
username: ${{ github.actor }}
24+
password: ${{ secrets.GITHUB_TOKEN }}
25+
26+
- name: Build and push Docker image
27+
run: |
28+
TOOLCHAIN_ID=$(../print_toolchain_checksum.sh)
29+
docker build -t ghcr.io/${{ github.repository }}-toolchain:${{ github.ref_name }} --build-arg VERSION=$TOOLCHAIN_ID .
30+
docker push ghcr.io/${{ github.repository }}-toolchain:${{ github.ref_name }}
31+
working-directory: scripts/docker

scripts/docker/Dockerfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
FROM ubuntu:22.04 as nrfutil-builder
2+
3+
ARG VERSION
4+
RUN apt-get update && apt-get install -y \
5+
wget \
6+
&& rm -rf /var/lib/apt/lists/*
7+
RUN wget https://developer.nordicsemi.com/.pc-tools/nrfutil/x64-linux/nrfutil && chmod +x nrfutil \
8+
&& ./nrfutil install toolchain-manager && ./nrfutil toolchain-manager install --toolchain-bundle-id $VERSION
9+
RUN ./nrfutil toolchain-manager env --as-script > /root/toolchain-env.sh
10+
11+
12+
FROM ubuntu:22.04
13+
14+
# Link to repo (https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#labelling-container-images)
15+
LABEL org.opencontainers.image.source=https://github.com/nrfconnect/sdk-nrf
16+
# Set metadata for an image
17+
LABEL org.opencontainers.image.description="This image contains toolchain for sdk-nrf."
18+
19+
RUN apt-get update && apt-get install -y \
20+
ca-certificates \
21+
&& rm -rf /var/lib/apt/lists/*
22+
23+
# Copy toolchain
24+
COPY --from=nrfutil-builder /root/ncs/toolchains /root/ncs/toolchains
25+
COPY --from=nrfutil-builder /root/toolchain-env.sh /root/toolchain-env.sh
26+
27+
# Add entrypoint which calls toolchain-env.sh
28+
ADD entrypoint.sh /root/entrypoint.sh
29+
ENTRYPOINT ["/root/entrypoint.sh"]
30+
CMD ["bin/bash"]

scripts/docker/entrypoint.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#! /bin/bash
2+
3+
source /root/toolchain-env.sh
4+
exec "$@"

0 commit comments

Comments
 (0)