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 #1503

Merged
merged 1 commit into from
Oct 30, 2023
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:ab2ded4e9f5a9dc758d929fb19685cc7e576bc666084c9d1b92cc651206b4757
FROM wordpress:cli-php8.1@sha256:b1337a4c5edda084f29943eff67adaa97b22311f62de86d71c612da37ea53d45

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:ab2ded4e9f5a9dc758d929fb19685cc7e576bc666084c9d1b92cc651206b4757
image: wordpress:cli-php8.1@sha256:b1337a4c5edda084f29943eff67adaa97b22311f62de86d71c612da37ea53d45
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:403855481b9b080ee79c29b301b8d1817b7ad183d477dd2c1de243831a9256d3 AS composer
FROM composer:latest@sha256:fb3c5a283f2dc08e08841048498e8a82c3864648c84255b5ad7243b38d33a8db 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.3.2-php8.1-fpm-alpine@sha256:afdc75a2e0e8d523447d1b550920999be0e5834cc1d4a43c5840563e84d01673
FROM wordpress:6.3.2-php8.1-fpm-alpine@sha256:4572ab237d77deb02d5363bf112f93aff34d35d3a29001b1fc1a719cbe445481

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.3.2-php8.1-fpm-alpine@sha256:afdc75a2e0e8d523447d1b550920999be0e5834cc1d4a43c5840563e84d01673
FROM wordpress:6.3.2-php8.1-fpm-alpine@sha256:4572ab237d77deb02d5363bf112f93aff34d35d3a29001b1fc1a719cbe445481

WORKDIR /usr/src/wordpress

Expand Down
Loading