alpine tests
Some checks failed
/ docker (push) Failing after 26s

This commit is contained in:
Lee 2023-07-08 00:03:09 +01:00
parent 7d2e2b69d2
commit d89ed9e17d
2 changed files with 16 additions and 17 deletions

@ -1,12 +1,10 @@
FROM ubuntu:23.04 FROM alpine:3.14
# Install dependencies # Install dependencies
RUN apt update RUN apk update && \
RUN DEBIAN_FRONTEND=noninteractive \ apk upgrade && \
apt install nginx php8.1 php8.1-fpm php8.1-gd php8.1-imagick -y apk add --no-cache nginx php8.1 php8.1-fpm php8.1-gd php8.1-imagick && \
rm -rf /var/cache/apk/*
# Clean up
RUN apt clean
# Set up nginx # Set up nginx
COPY ./docker/nginx.conf /etc/nginx/nginx.conf COPY ./docker/nginx.conf /etc/nginx/nginx.conf

@ -1,18 +1,20 @@
if [[ -z "${MAX_UPLOAD_SIZE}" ]]; then #!/bin/sh
if [ -z "$MAX_UPLOAD_SIZE" ]; then
MAX_UPLOAD_SIZE="8M" # Default fallback value MAX_UPLOAD_SIZE="8M" # Default fallback value
fi fi
echo "Checking if upload script exists in /var/www/html" echo "Checking if upload script exists in /var/www/html"
if [ -f "/var/www/html/upload.php" ]; then if [ -f "/var/www/html/upload.php" ]; then
echo "Upload script was found, ignoring copy." echo "Upload script was found, ignoring copy."
else else
cp /tmp/upload.php /var/www/html cp /tmp/upload.php /var/www/html
echo "Upload script was not found, copying it." echo "Upload script was not found, copying it."
fi fi
# Letting php know that we are running in docker # Letting php know that we are running in docker
echo "env[DOCKER] = true" >> /etc/php/8.1/fpm/pool.d/www.conf echo "env[DOCKER] = true" >> /etc/php8/php-fpm.d/www.conf
echo "clear_env = no" >> /etc/php/8.1/fpm/pool.d/www.conf echo "clear_env = no" >> /etc/php8/php-fpm.d/www.conf
echo "Setting permissions for upload script" echo "Setting permissions for upload script"
chmod 777 /var/www/html/upload.php chmod 777 /var/www/html/upload.php
@ -20,16 +22,15 @@ chmod 777 /var/www/html/upload.php
echo "Setting max upload size to ${MAX_UPLOAD_SIZE}" echo "Setting max upload size to ${MAX_UPLOAD_SIZE}"
# Set max upload size for php # Set max upload size for php
sed -i "s/^upload_max_filesize = .*/upload_max_filesize = ${MAX_UPLOAD_SIZE}/" /etc/php/8.1/fpm/php.ini sed -i "s/^upload_max_filesize = .*/upload_max_filesize = ${MAX_UPLOAD_SIZE}/" /etc/php8/php.ini
sed -i "s/^post_max_size = .*/post_max_size = ${MAX_UPLOAD_SIZE}/" /etc/php/8.1/fpm/php.ini sed -i "s/^post_max_size = .*/post_max_size = ${MAX_UPLOAD_SIZE}/" /etc/php8/php.ini
# Set max upload size for nginx # Set max upload size for nginx
sed -i "s/client_max_body_size 500M;/client_max_body_size ${MAX_UPLOAD_SIZE};/" /etc/nginx/nginx.conf sed -i "s/client_max_body_size 500M;/client_max_body_size ${MAX_UPLOAD_SIZE};/" /etc/nginx/nginx.conf
function start() { function start() {
echo "Starting PHP & Nginx" echo "Starting PHP & Nginx"
/etc/init.d/php8.1-fpm start && php-fpm8 &&
chmod 777 /run/php/php8.1-fpm.sock &&
nginx -g 'daemon off;' nginx -g 'daemon off;'
} }