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

chore(deps): update all non-major docker images #1689

Merged
merged 1 commit into from
Apr 15, 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
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:16-alpine@sha256:a1f9d027912b58a7c75be7716c97cfbc6d3099f3a97ed84aa490be9dee20e787 AS node

FROM wordpress:cli-php8.1@sha256:6a301c2af47287c7fcb1f38c9491be2a7a888d63b040353e8c62f31f10dbb1a7
FROM wordpress:cli-php8.1@sha256:6fb46f99fd5b0d360344ed63ecfa9e7aee1ca86a5446158b17b5364fc4ae84d0

COPY --from=node /usr/lib /usr/lib
COPY --from=node /usr/local/share /usr/local/share
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ services:
depends_on:
- db
- wordpress
image: wordpress:cli-php8.1@sha256:6a301c2af47287c7fcb1f38c9491be2a7a888d63b040353e8c62f31f10dbb1a7
image: wordpress:cli-php8.1@sha256:6fb46f99fd5b0d360344ed63ecfa9e7aee1ca86a5446158b17b5364fc4ae84d0
profiles:
- tools
env_file: .env
Expand Down
4 changes: 2 additions & 2 deletions wordpress/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Install composer dependencies
FROM composer:latest@sha256:63c0f08ca413700adcec721aa425e1247304c98314ed0bc2e5fc3699424e2364 AS composer
FROM composer:latest@sha256:db70816515af1c86adae1fe142bf3b9e42634a3d4d7500766b0fcc53301937d9 AS composer

ARG WPML_USER_ID
ARG WPML_KEY
Expand Down Expand Up @@ -28,7 +28,7 @@ RUN npm --unsafe-perm install
# when updating the Wordpress version, update the version in the files:
# - ~/wordpress/docker/local.Dockerfile
# - ~/github/workflows/ci.yml
FROM wordpress:6.5.2-php8.1-fpm-alpine@sha256:eb40a00416a185793ae9feaadf6bfb94324a6bdf6e02b154edda9e2bd7d90a31
FROM wordpress:6.5.2-php8.1-fpm-alpine@sha256:161645c65eacde40393df88820bcc093fc51201115cf95e65cf92f52b5955b52

RUN apk add --no-cache $PHPIZE_DEPS \
&& pecl install pcov \
Expand Down
2 changes: 1 addition & 1 deletion wordpress/docker/local.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# wordpress version needs to match the version found in ~/wordpress/docker/Dockerfile
FROM wordpress:6.5.2-php8.1-fpm-alpine@sha256:eb40a00416a185793ae9feaadf6bfb94324a6bdf6e02b154edda9e2bd7d90a31
FROM wordpress:6.5.2-php8.1-fpm-alpine@sha256:161645c65eacde40393df88820bcc093fc51201115cf95e65cf92f52b5955b52

WORKDIR /usr/src/wordpress

Expand Down
Loading