This commit is contained in:
Jérémie Drouet 2021-03-07 12:22:20 -05:00 committed by GitHub
commit 8e76bf1094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 60 additions and 0 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
EXAMPLES
Dockerfile
.github

39
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,39 @@
name: build docker image
on: [push]
jobs:
build:
name: build images and push
runs-on: ubuntu-latest
steps:
- name: install qemu
run: docker run --rm --privileged hypriot/qemu-register
- name: checkout
uses: actions/checkout@v1
- name: login to docker hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: install buildx
run: |
mkdir -vp ~/.docker/cli-plugins/ ~/dockercache
curl --silent -L "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-amd64" > ~/.docker/cli-plugins/docker-buildx
chmod a+x ~/.docker/cli-plugins/docker-buildx
docker buildx create --use
- name: build image and push to hub
if: github.ref == 'refs/heads/master'
run: |
docker buildx build --push \
--platform linux/arm/v7,linux/arm64/v8 \
-t $GITHUB_REPOSITORY:latest \
.
- name: build image
if: github.ref != 'refs/heads/master'
run: |
docker buildx build --platform linux/arm/v7,linux/arm64/v8 .

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
FROM debian:buster AS builder
RUN apt-get update \
&& apt-get install -y make gcc \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workdir
COPY . /workdir
RUN make install
FROM debian:buster-slim
COPY --from=builder /usr/local/lib/libpigpio.so.1 /usr/local/lib/libpigpio.so.1
COPY --from=builder /usr/local/bin/pigpiod /usr/local/bin/pigpiod
RUN ldconfig
CMD ["/usr/local/bin/pigpiod", "-g"]