Skip to content

Commit

Permalink
Add Dockerfile for nfd-status-http-server
Browse files Browse the repository at this point in the history
Change-Id: I87349b2cf351c7323d8511677ce7f4a31d944387
  • Loading branch information
pulsejet authored and Pesa committed Nov 19, 2023
1 parent 6ba08cd commit 23135a4
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 3 deletions.
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Dockerfile

/build/
.waf-*-*/
.waf3-*-*/
.lock-waf*

/VERSION.info
37 changes: 34 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@ permissions:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
publish:
nfd:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -37,7 +36,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/nfd
flavor: latest=true

- name: Build and push Docker image
Expand All @@ -48,3 +47,35 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

nfd-status-http-server:
needs: nfd
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Login to ${{ env.REGISTRY }}
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/nfd-status-http-server
flavor: latest=true

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./tools
file: ./tools/Dockerfile.nfd-status-http-server
pull: true
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ COPY --from=builder /usr/lib/libndn-cxx.so* /usr/lib/
COPY --from=builder /usr/bin/nfd /usr/bin/
COPY --from=builder /usr/bin/nfdc /usr/bin/

COPY --from=builder /usr/bin/nfd-status-http-server /usr/bin/
COPY --from=builder /usr/share/ndn/ /usr/share/ndn/

VOLUME /config
VOLUME /run/nfd

Expand Down
12 changes: 12 additions & 0 deletions tools/Dockerfile.nfd-status-http-server
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM ghcr.io/named-data/nfd:latest

RUN apt-get update \
&& apt-get install -y --no-install-recommends python3 \
&& rm -rf /var/lib/apt/lists/*

VOLUME /run/nfd

EXPOSE 8080/tcp

ENTRYPOINT ["/usr/bin/nfd-status-http-server"]
CMD ["--address", "0.0.0.0", "--port", "8080"]

0 comments on commit 23135a4

Please sign in to comment.