This commit is contained in:
parent
fb2c1e0ad7
commit
18d4de0fa5
18
.forgejo/workflows/build.yaml
Normal file
18
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: gitea-container-builder
|
||||||
|
steps:
|
||||||
|
- run: buildah login --username ${{ secrets.username }} --password ${{ secrets.password }} ${GITHUB_SERVER_URL}
|
||||||
|
- run: wget ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/raw/branch/${GITHUB_REF_NAME}/Dockerfile
|
||||||
|
name: "Fetch Dockerfile"
|
||||||
|
- run: buildah build --isolation=chroot | tee container_id
|
||||||
|
name: "Build container"
|
||||||
|
- run: echo "WORK_CONTAINER_ID=$(buildah from $(tail -n 1 container_id))" >> $GITHUB_OUTPUT
|
||||||
|
name: "Fetch freshly build container"
|
||||||
|
id: buildah-from
|
||||||
|
- run: buildah run --isolation=chroot ${{ steps.buildah-from.outputs.WORK_CONTAINER_ID }} esphome version
|
||||||
|
- run: buildah push $(tail -n 1 container_id) ${GITHUB_SERVER_URL/https:\/\//}/${GITHUB_REPOSITORY,,}:latest
|
6
Dockerfile
Normal file
6
Dockerfile
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# hadolint ignore=DL3006
|
||||||
|
FROM alpine:latest
|
||||||
|
RUN apk add curl python3 py3-pip
|
||||||
|
RUN rm -f /usr/lib/*/EXTERNALLY-MANAGED
|
||||||
|
RUN pip install esphome
|
||||||
|
RUN pip install -r <(curl -s https://raw.githubusercontent.com/esphome/esphome/main/requirements_optional.txt)
|
Loading…
Reference in a new issue