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:
Matthew McKinnon 2024-09-22 11:53:42 +10:00
parent 20a993d258
commit c4fc730220
3 changed files with 17 additions and 7 deletions

View File

@ -1,7 +1,7 @@
on: push
jobs:
build-node:
runs-on: ubuntu-latest
runs-on: alpine-latest
container:
image: catthehacker/ubuntu:act-latest
steps:
@ -36,7 +36,7 @@ jobs:
tags: git.comprofix.com/mmckinnon/comprofix.com:latest
publish:
runs-on: ubuntu-latest
runs-on: alpine-latest
steps:
- name: checkout repo
uses: actions/checkout@v4

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 /

View File

@ -1,4 +1,5 @@
<html>
<meta charset="UTF-8">
<head>
<title>{{ title }}</title>
<link rel="stylesheet" href="/css/global.css" />