Skip to content
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
6 changes: 3 additions & 3 deletions base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ARG ALPINE_VERSION=3.21
ARG ALPINE_VERSION=latest
ARG PHP_VERSION=8.0

FROM docker.io/skpr/docconv:alpine${ALPINE_VERSION} AS docconv

FROM from_image AS base

ARG TARGETARCH
ARG ALPINE_VERSION=3.21
ARG ALPINE_VERSION=latest
ARG PHP_VERSION=8.0
ARG TARGETARCH

ENV ALPINE_VERSION=${ALPINE_VERSION}
ENV PHP_MEMORY_LIMIT=128M
Expand Down
3 changes: 1 addition & 2 deletions cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ARG ALPINE_VERSION=3.21

ARG ALPINE_VERSION=latest
FROM alpine:${ALPINE_VERSION} AS redis-cli

RUN apk add redis
Expand Down
2 changes: 1 addition & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ variable "PHP_VERSION" {
}

variable "ALPINE_VERSION" {
default = "3.21"
default = "3.23"
}

variable "STREAM" {
Expand Down
Loading