sharex-php-uploader/Dockerfile

26 lines
729 B
Docker
Raw Normal View History

2023-07-07 23:08:36 +00:00
FROM alpine:3.18.2
2023-07-04 15:32:18 +00:00
# Install dependencies
2023-07-07 23:08:36 +00:00
RUN apk update && \
apk upgrade && \
2023-07-07 23:14:05 +00:00
apk add --no-cache nginx php81 php81-fpm && \
2023-07-07 23:08:36 +00:00
rm -rf /var/cache/apk/*
2023-07-05 16:19:18 +00:00
2023-07-07 23:41:26 +00:00
# Install Imagick
2023-07-07 23:42:40 +00:00
RUN set -ex \
&& apk add --no-cache --virtual .phpize-deps $PHPIZE_DEPS imagemagick-dev libtool \
&& export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" \
&& pecl install imagick-3.4.3 \
&& docker-php-ext-enable imagick \
&& apk add --no-cache --virtual .imagick-runtime-deps imagemagick \
&& apk del .phpize-deps
2023-07-07 23:41:26 +00:00
2023-07-04 15:32:18 +00:00
# Set up nginx
2023-07-04 15:46:10 +00:00
COPY ./docker/nginx.conf /etc/nginx/nginx.conf
2023-07-04 15:32:18 +00:00
2023-07-04 15:46:10 +00:00
# Setup scripts
2023-07-04 15:51:11 +00:00
COPY ./upload.php /tmp/upload.php
2023-07-04 15:46:10 +00:00
COPY ./docker/start.sh /start.sh
# Start server
2023-07-07 23:18:05 +00:00
CMD ["sh", "/start.sh"]