Skip to content

Commit

Permalink
api/Dockerfile: pin alpine version to 3.16
Browse files Browse the repository at this point in the history
Because alpine 3.16 currently uses icu-dev version 71.1-r2.
#3246
  • Loading branch information
BacLuc committed Jan 31, 2023
1 parent 269842e commit 2a43700
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@
# renovate: datasource=docker depName=php
ARG PHP_VERSION=8.1.13

# renovate: datasource=docker depName=alpine
ARG ALPINE_VERSION=3.16

# renovate: datasource=docker depName=caddy
ARG CADDY_VERSION=2.6.2

# "php" stage
FROM php:${PHP_VERSION}-fpm-alpine AS api_platform_php
FROM php:${PHP_VERSION}-fpm-alpine${ALPINE_VERSION} AS api_platform_php

# persistent / runtime deps
RUN apk add --no-cache \
Expand Down
6 changes: 6 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@
"before 7am every monday"
]
},
{
"matchPackageNames": [
"alpine"
],
"allowedVersions": "3.16"
},
{
"matchPackageNames": [
"postgres"
Expand Down

0 comments on commit 2a43700

Please sign in to comment.