fix: set docker image to alpine
Some checks failed
/ build-node (push) Successful in 1m20s
/ publish (push) Failing after 7s

This commit is contained in:
2024-09-22 11:53:42 +10:00
parent 20a993d258
commit c4fc730220
3 changed files with 17 additions and 7 deletions

View File

@ -1,13 +1,22 @@
FROM php:8.1-apache
FROM httpd:2.4-alpine
LABEL "Matthew McKinnon"="<support@comprofix.com>"
ENV "DEBIAN_FRONTEND"="noninteractive"
RUN apk update && apk add --no-cache \
tzdata \
git \
php \
php-fpm \
php-zip \
composer \
musl-locales musl-locales-lang
RUN apt-get update
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# Set the locale to en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LC_ALL=en_US.UTF-8
ENV LC_CTYPE=en_US.UTF-8
COPY --from=composer:2 /usr/bin/composer /usr/local/bin/composer
COPY _site/ /var/www/html
COPY _site/ /usr/local/apache2/htdocs/
WORKDIR /