push to 1.6.5
This commit is contained in:
parent
a7341bac2c
commit
fc4e33a9b9
4 changed files with 86 additions and 85 deletions
74
Containerfile
Normal file
74
Containerfile
Normal file
|
@ -0,0 +1,74 @@
|
|||
FROM docker.io/alpine:3.19 AS builder
|
||||
|
||||
RUN apk add --no-cache \
|
||||
php83 \
|
||||
php83-phar \
|
||||
php83-mbstring \
|
||||
php83-openssl \
|
||||
php83-ctype \
|
||||
php83-gd \
|
||||
php83-dom \
|
||||
php83-xml \
|
||||
php83-ldap \
|
||||
php83-xmlreader \
|
||||
php83-xmlwriter
|
||||
|
||||
ENV COMPOSER_VERSION=2.6.6
|
||||
ENV COMPOSER_SHA256_SUM=72600201c73c7c4b218f1c0511b36d8537963e36aafa244757f52309f885b314
|
||||
RUN wget https://getcomposer.org/download/$COMPOSER_VERSION/composer.phar
|
||||
RUN echo "$COMPOSER_SHA256_SUM composer.phar" | sha256sum -c - || exit 1
|
||||
RUN mv composer.phar /usr/bin/composer
|
||||
RUN chmod +x /usr/bin/composer
|
||||
|
||||
ENV VERSION=1.6.5
|
||||
ENV SHA256_SUM=164b72cb78de89d104741ee9090f4024e63bfada43949034844365f3fa70b5fd
|
||||
RUN wget https://github.com/roundcube/roundcubemail/releases/download/$VERSION/roundcubemail-$VERSION-complete.tar.gz
|
||||
RUN echo "$SHA256_SUM roundcubemail-$VERSION-complete.tar.gz" | sha256sum -c - || exit 1
|
||||
RUN mkdir -p /var/lib/roundcube
|
||||
RUN tar xzf roundcubemail-$VERSION-complete.tar.gz -C /var/lib/roundcube --strip 1
|
||||
|
||||
FROM docker.io/thallian/php8-fpm:3.19-8.3
|
||||
|
||||
RUN apk add --no-cache \
|
||||
openssl \
|
||||
tar \
|
||||
nginx \
|
||||
postgresql-client \
|
||||
aspell \
|
||||
ca-certificates \
|
||||
php83 \
|
||||
php83-imap \
|
||||
php83-dom \
|
||||
php83-json \
|
||||
php83-xml \
|
||||
php83-session \
|
||||
php83-pdo \
|
||||
php83-pdo_pgsql \
|
||||
php83-sockets \
|
||||
php83-exif \
|
||||
php83-iconv \
|
||||
php83-openssl \
|
||||
php83-mbstring \
|
||||
php83-sockets \
|
||||
php83-zip \
|
||||
php83-pspell \
|
||||
php83-pecl-apcu \
|
||||
php83-gd \
|
||||
php83-ctype \
|
||||
php83-xmlreader \
|
||||
php83-xmlwriter \
|
||||
php83-tokenizer \
|
||||
php83-curl \
|
||||
php83-simplexml \
|
||||
php83-xml \
|
||||
php83-dom \
|
||||
php83-intl
|
||||
|
||||
COPY --from=builder --chown=nginx:nginx /var/lib/roundcube /var/lib/roundcube
|
||||
|
||||
ADD /rootfs /
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
ENV FPMUSER nginx
|
||||
ENV FPMGROUP nginx
|
Loading…
Add table
Add a link
Reference in a new issue