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

PHP 8.3.13 and composer 2.7.7. #19

Merged
merged 1 commit into from
Nov 18, 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
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM php:8-alpine
FROM php:8.3.13-alpine3.19

ARG RUNNER_UID=1001
# ARG RUNNER_UID=1001

LABEL maintainer="marji@morpht.com"
LABEL org.opencontainers.image.source="https://github.com/morpht/ci-php"

ENV COMPOSER_VERSION=2.7.1 \
COMPOSER_HASH_SHA256=1ffd0be3f27e237b1ae47f9e8f29f96ac7f50a0bd9eef4f88cdbe94dd04bfff0
ENV COMPOSER_VERSION=2.7.7 \
COMPOSER_HASH_SHA256=aab940cd53d285a54c50465820a2080fcb7182a4ba1e5f795abfb10414a4b4be

RUN apk add --no-cache --update git \
bash \
Expand All @@ -22,6 +22,6 @@ RUN apk add --no-cache --update git \
&& echo "$COMPOSER_HASH_SHA256 /usr/local/bin/composer" | sha256sum -c \
&& chmod +x /usr/local/bin/composer

RUN adduser -D -h /home/runner -u $RUNNER_UID runner
# RUN adduser -D -h /home/runner -u $RUNNER_UID runner

USER runner
# USER runner
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ci-php

Docker image based on the official dockerhub image php:8-alpine
Docker image based on the official dockerhub image php:8.3.x-alpine3.19

A few modifications:

Expand Down
Loading