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

Merged
merged 1 commit into from
Jul 17, 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:6c381d5dc2a11dcdb693f0301e8587e43f440c90cdb8933eaaaabb905d44cdb9 AS node

FROM wordpress:cli-php8.1@sha256:dd96082d8b64b2b31544a2a11de2bca6baea6a785534101bfa1db19b5149c8c5
FROM wordpress:cli-php8.1@sha256:93b75d8a87a79e0e57b0d7d3553fc0bc99e4786222a201a31223bbbe8343770b

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:dd96082d8b64b2b31544a2a11de2bca6baea6a785534101bfa1db19b5149c8c5
image: wordpress:cli-php8.1@sha256:93b75d8a87a79e0e57b0d7d3553fc0bc99e4786222a201a31223bbbe8343770b
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:c44511894122bc47589f8071f3e7f95b34b3c9b8bd8d8f9de93d3c340712fb48 AS composer
FROM composer:latest@sha256:572a3d91b1233a8dc9397627f41832a6aa4d0dc63b18c1da816490e6b7f9536a 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.2.2-php8.1-fpm-alpine@sha256:feede9841c417c4207fbd18588ba550855953c4fae23d87b4eff70c69409b11c
FROM wordpress:6.2.2-php8.1-fpm-alpine@sha256:0ad67db5b6bb4d4711bf79071d04169755a1615b8b984455661728ece35e6e60

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.2.2-php8.1-fpm-alpine@sha256:feede9841c417c4207fbd18588ba550855953c4fae23d87b4eff70c69409b11c
FROM wordpress:6.2.2-php8.1-fpm-alpine@sha256:0ad67db5b6bb4d4711bf79071d04169755a1615b8b984455661728ece35e6e60

WORKDIR /usr/src/wordpress

Expand Down
Loading