Docker build

This commit is contained in:
Philipp Riederer 2022-08-21 22:55:10 +02:00
parent af607e4bfa
commit 9546582875
3 changed files with 42 additions and 0 deletions

7
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,7 @@
---
version: 2
updates:
- package-ecosystem: "docker"
directory: "."
schedule:
interval: "weekly"

25
.github/workflows/build-docker.yaml vendored Normal file
View File

@ -0,0 +1,25 @@
name: ci
on:
push:
tags:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ secrets.DOCKERHUB_USERNAME }}/docker-udpspeeder:${{ github.ref_name }}

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM debian:bullseye-20220711 AS builder
RUN apt-get update && apt-get install -y build-essential git
COPY . /src
WORKDIR /src
RUN make -f makefile
FROM gcr.io/distroless/base-debian11
COPY --from=builder /src/speederv2 /
ENTRYPOINT ["/speederv2"]