Skip to content

Commit

Permalink
Move module build to GitHub actions, add binary building
Browse files Browse the repository at this point in the history
  • Loading branch information
jorikfon committed Nov 24, 2024
1 parent 2586899 commit 7748058
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/build/zabbix-agent-builder/Dockerfile.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG ZABBIX_VERSION=6.0.0
# Install required packages in a single layer to minimize image size
# --no-install-recommends reduces installed packages to only essential ones
RUN apt-get update && \
apt-get install -y --no-install-recommends \
apt-get install -y \
build-essential \
wget \
libssl-dev \
Expand Down
4 changes: 2 additions & 2 deletions .github/build/zabbix-agent-builder/Dockerfile.arm64
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM --platform=linux/arm64 arm64v8/debian:bullseye-slim
FROM arm64v8/debian:bullseye-slim

# Zabbix version as build argument for easy updates
ARG ZABBIX_VERSION=6.0.0

# Install required packages in a single layer to minimize image size
# --no-install-recommends reduces installed packages to only essential ones
RUN apt-get update && \
apt-get install -y --no-install-recommends \
apt-get install -y \
build-essential \
wget \
libssl-dev \
Expand Down

0 comments on commit 7748058

Please sign in to comment.