Skip to content

Commit

Permalink
Release 7.6.17 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Jul 4, 2022
1 parent 610a0d1 commit a76724d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,6 @@ jobs:
fi
fi
- name: Switch
id: Switch
run: |
sed -i "s|FROM docker.io/debian:.*|FROM docker.io/debian:${RELEASE}|g" Dockerfile
- name: Build
uses: docker/build-push-action@v3
with:
Expand All @@ -120,6 +115,9 @@ jobs:
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: ${{ steps.prep.outputs.tags }}
build-args: |
DEBIAN_VERSION=${{ env.RELEASE }}
buster:
env:
RELEASE: buster
Expand Down Expand Up @@ -215,11 +213,6 @@ jobs:
fi
fi
- name: Switch
id: Switch
run: |
sed -i "s|FROM docker.io/debian:.*|FROM docker.io/debian:${RELEASE}|g" Dockerfile
- name: Build
uses: docker/build-push-action@v3
with:
Expand All @@ -229,3 +222,5 @@ jobs:
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: ${{ steps.prep.outputs.tags }}
build-args: |
DEBIAN_VERSION=${{ env.RELEASE }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 7.6.17 2022-07-04 <dave at tiredofit dot ca>

### Changed
- Add version ARG in FROM Dockerfile


## 7.6.16 2022-06-29 <dave at tiredofit dot ca>

### Added
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
FROM docker.io/debian:bullseye
LABEL maintainer="Dave Conroy (github.com/tiredofit)"

### Set defaults
ARG DEBIAN_VERSION=bullseye
ARG GOLANG_VERSION=1.18.3
ARG DOAS_VERSION
ARG FLUENTBIT_VERSION
ARG S6_OVERLAY_VERSION
ARG ZABBIX_VERSION

FROM docker.io/debian:${DEBIAN_VERSION}
LABEL maintainer="Dave Conroy (github.com/tiredofit)"

ENV FLUENTBIT_VERSION=${FLUENTBIT_VERSION:-"1.9.5"} \
S6_OVERLAY_VERSION=${S6_OVERLAY_VERSION:-"3.1.1.2"} \
ZABBIX_VERSION=${ZABBIX_VERSION:-"6.0.6"} \
Expand Down

0 comments on commit a76724d

Please sign in to comment.