Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(fix): Properly auto-update Dockerfiles using a build arg #309

Merged
merged 2 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Dockerfile.buildkit.plus
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
ARG RELEASE=bookworm
FROM debian:${RELEASE}-slim@sha256:f528891ab1aa484bf7233dbcc84f3c806c3e427571d75510a9d74bb5ec535b33
FROM debian:bookworm-slim@sha256:f528891ab1aa484bf7233dbcc84f3c806c3e427571d75510a9d74bb5ec535b33

# Persist RELEASE argument
ARG RELEASE
# Create RELEASE argument
ARG RELEASE=bookworm

# NJS env vars
ENV NGINX_VERSION=32
Expand Down
7 changes: 3 additions & 4 deletions Dockerfile.plus
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
ARG RELEASE=bookworm
FROM debian:${RELEASE}-slim@sha256:f528891ab1aa484bf7233dbcc84f3c806c3e427571d75510a9d74bb5ec535b33
FROM debian:bookworm-slim@sha256:f528891ab1aa484bf7233dbcc84f3c806c3e427571d75510a9d74bb5ec535b33

# Persist RELEASE argument
ARG RELEASE
# Create RELEASE argument
ARG RELEASE=bookworm

# NJS env vars
ENV NGINX_VERSION=32
Expand Down