Skip to content

Commit bf38d04

Browse files
committed
Enable reproducible builds
1 parent 622238d commit bf38d04

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/docker-build-push.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
shell: bash
2222
run: echo "IMAGE=${GITHUB_REPOSITORY#*/docker-}" >> "${GITHUB_ENV}"
2323
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24+
- name: Set SOURCE_DATE_EPOCH
25+
run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> "${GITHUB_ENV}"
2426
- uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
2527
- uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
2628
- uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0

.github/workflows/docker-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
shell: bash
1919
run: echo "IMAGE=${GITHUB_REPOSITORY#*/docker-}" >> "${GITHUB_ENV}"
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
- name: Set SOURCE_DATE_EPOCH
22+
run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> "${GITHUB_ENV}"
2123
- uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
2224
- uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
2325
- uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ permissions: {}
2727
# Set the Job #
2828
###############
2929
jobs:
30-
build:
30+
lint:
3131
# Name the Job
3232
name: Lint Code Base
3333
# Set the agent to run on

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,11 @@ If you need more TeX Live packages, you have the following options:
6464

6565
By default these images are based on the Debian Linux distribution
6666
and follow the same release cycle as the parent
67-
[debian docker images](https://hub.docker.com/_/debian). But there is
68-
also an Alpine Linux variant of these images for people who prefer
69-
smaller images. The images are tagged with prefix `alpine` and follow
70-
the same release cycle as the parent
67+
[debian docker images](https://hub.docker.com/_/debian). These image
68+
versions are tagged with sufffix `-debian` (except for the `latest`
69+
tag). But there is also an Alpine Linux variant of these images for
70+
people who prefer smaller images. These image versions are tagged with
71+
sufffix `-alpine` and follow the same release cycle as the parent
7172
[alpine docker images](https://hub.docker.com/_/alpine). Note that
7273
although the risk might be low, Alpine Linux is using an alternative
7374
implementation of the C standard library called Musl which is smaller

0 commit comments

Comments
 (0)