Skip to content

Commit

Permalink
CI/CD Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioassuncao committed Jun 27, 2024
1 parent 75a529c commit 6c06c4a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions php/8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
FROM alpine:latest
ARG ALPINE_VERSION=edge
FROM alpine:${ALPINE_VERSION}
LABEL Maintainer="Fábio Assunçãp <fabio23gt@gmail.com>"
LABEL Description="Lightweight container with PHP 8.3 based on Alpine Linux."

# Essentials
RUN echo "UTC" > /etc/timezone && \
apk add --no-cache zip unzip curl sqlite bash && \
sed -i 's/bin\/ash/bin\/bash/g' /etc/passwd

# Installing PHP and extensions
Expand Down Expand Up @@ -36,6 +38,11 @@ RUN apk add --no-cache php83 \
php83-posix \
php83-dev \
php83-pear \
zip \
unzip \
curl \
sqlite \
bash \
gcc \
make \
autoconf \
Expand Down

0 comments on commit 6c06c4a

Please sign in to comment.