mirror of
https://github.com/wangyu-/UDPspeeder.git
synced 2025-04-04 11:09:32 +08:00
Merge 9546582875e7be67091d0b626037858d755f24a1 into 17694ecaa9681b04498709ba7526c8a8f022b512
This commit is contained in:
commit
50e10297dd
7
.github/dependabot.yml
vendored
Normal file
7
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "docker"
|
||||||
|
directory: "."
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
25
.github/workflows/build-docker.yaml
vendored
Normal file
25
.github/workflows/build-docker.yaml
vendored
Normal 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
10
Dockerfile
Normal 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"]
|
Loading…
x
Reference in New Issue
Block a user