placeholder for arm arch
This commit is contained in:
parent
7309257569
commit
ddba94f72d
43
.drone.yml
43
.drone.yml
@ -82,3 +82,46 @@ trigger:
|
||||
event:
|
||||
- tag
|
||||
- push
|
||||
|
||||
# ---
|
||||
# kind: pipeline
|
||||
# type: docker
|
||||
# name: build-arm
|
||||
|
||||
# platform:
|
||||
# arch: arm
|
||||
# os: linux
|
||||
|
||||
# steps:
|
||||
# - name: build
|
||||
# image: plugins/docker:linux-arm
|
||||
# settings:
|
||||
# dockerfile: Dockerfile.arm
|
||||
# dry_run: true
|
||||
# repo: docker.asperti.com/paspo/hassio-zabbix-agent2
|
||||
# when:
|
||||
# event:
|
||||
# - push
|
||||
|
||||
# - name: build_and_publish
|
||||
# image: plugins/docker:linux-arm
|
||||
# settings:
|
||||
# dockerfile: Dockerfile.arm
|
||||
# password:
|
||||
# from_secret: docker_password
|
||||
# registry: docker.asperti.com
|
||||
# repo: docker.asperti.com/paspo/hassio-zabbix-agent2
|
||||
# tags:
|
||||
# - latest-arm
|
||||
# - ${DRONE_TAG}-arm
|
||||
# - ${DRONE_SEMVER_MAJOR}.${DRONE_SEMVER_MINOR}-arm
|
||||
# username:
|
||||
# from_secret: docker_username
|
||||
# when:
|
||||
# event:
|
||||
# - tag
|
||||
|
||||
# trigger:
|
||||
# event:
|
||||
# - tag
|
||||
# - push
|
||||
|
12
Dockerfile.arm
Normal file
12
Dockerfile.arm
Normal file
@ -0,0 +1,12 @@
|
||||
ARG BUILD_FROM=ghcr.io/hassio-addons/base/armhf:12.0.0
|
||||
FROM $BUILD_FROM
|
||||
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
# Copy scripts for add-on
|
||||
COPY run.sh /
|
||||
|
||||
RUN apk add -U jq zabbix-agent2=6.0.5-r0 sudo && \
|
||||
chmod a+x /run.sh
|
||||
|
||||
CMD [ "/run.sh" ]
|
Loading…
Reference in New Issue
Block a user