use nephatrine/alpine:builder now
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Daniel Wolf 2022-05-14 11:49:00 -04:00
parent 6dd1c85ede
commit 1c1932dee0
Signed by: nephatrine
GPG Key ID: 59D70EC2E4AAB4D0
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM pdr.nephatrine.net/nephatrine/alpine-builder:latest AS builder
FROM nephatrine/alpine:builder AS builder
ARG H5AI_VERSION=0.31.0
RUN git -C /usr/src clone -b "$H5AI_VERSION" --single-branch --depth=1 https://github.com/glubsy/h5ai.git
@ -9,10 +9,10 @@ RUN echo "====== COMPILE H5AI ======" \
&& mkdir -p /var/www/html/ \
&& unzip build/*.zip -d /var/www/html/
FROM pdr.nephatrine.net/nephatrine/nginx-php:latest
FROM nephatrine/nginx-php:latest
LABEL maintainer="Daniel Wolf <nephatrine@gmail.com>"
RUN echo "====== INSTALL TOOLS ======" \
RUN echo "====== INSTALL PACKAGES ======" \
&& apk add --no-cache ffmpeg imagemagick zip \
&& sed -i 's~/mnt/config/www/~/mnt/config/www/:/mnt/media/~g' /etc/php/php-fpm.d/www.conf \
&& sed -i 's~index.html~index.html /_h5ai/public/index.php~g' /etc/nginx/nginx.conf \