Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 16 additions & 17 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.21
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.22

# set version label
ARG BUILD_DATE
Expand All @@ -12,22 +12,21 @@ LABEL maintainer="TheSpad"
RUN \
echo "**** install runtime packages ****" && \
apk add --no-cache \
php83-bcmath \
php83-bz2 \
php83-cli \
php83-dom \
php83-gd \
php83-gettext \
php83-gmp \
php83-mysqli \
php83-pdo \
php83-pdo_dblib \
php83-pdo_mysql \
php83-pecl-apcu \
php83-pecl-mcrypt \
php83-pecl-memcached \
php83-soap \
php83-xmlreader && \
php84-bcmath \
php84-bz2 \
php84-cli \
php84-dom \
php84-gd \
php84-gettext \
php84-gmp \
php84-mysqli \
php84-pdo \
php84-pdo_dblib \
php84-pdo_mysql \
php84-pecl-apcu \
php84-pecl-memcached \
php84-soap \
php84-xmlreader && \
echo "**** install projectsend ****" && \
mkdir -p /app/www/public && \
if [ -z ${PROJECTSEND_VERSION+x} ]; then \
Expand Down
33 changes: 16 additions & 17 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.21
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.22

# set version label
ARG BUILD_DATE
Expand All @@ -12,22 +12,21 @@ LABEL maintainer="TheSpad"
RUN \
echo "**** install runtime packages ****" && \
apk add --no-cache \
php83-bcmath \
php83-bz2 \
php83-cli \
php83-dom \
php83-gd \
php83-gettext \
php83-gmp \
php83-mysqli \
php83-pdo \
php83-pdo_dblib \
php83-pdo_mysql \
php83-pecl-apcu \
php83-pecl-mcrypt \
php83-pecl-memcached \
php83-soap \
php83-xmlreader && \
php84-bcmath \
php84-bz2 \
php84-cli \
php84-dom \
php84-gd \
php84-gettext \
php84-gmp \
php84-mysqli \
php84-pdo \
php84-pdo_dblib \
php84-pdo_mysql \
php84-pecl-apcu \
php84-pecl-memcached \
php84-soap \
php84-xmlreader && \
echo "**** install projectsend ****" && \
mkdir -p /app/www/public && \
if [ -z ${PROJECTSEND_VERSION+x} ]; then \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **14.10.25:** - Rebase to 3.22.
* **06.06.25:** - Add crontab handler for scheduled tasks.
* **21.12.24:** - Rebase to Alpine 3.21, move php .ini file to /config/php.
* **06.06.24:** - Rebase to Alpine 3.20.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ init_diagram: |
"projectsend:latest" <- Base Images
# changelog
changelogs:
- {date: "14.10.25:", desc: "Rebase to 3.22."}
- {date: "06.06.25:", desc: "Add crontab handler for scheduled tasks."}
- {date: "21.12.24:", desc: "Rebase to Alpine 3.21, move php .ini file to /config/php."}
- {date: "06.06.24:", desc: "Rebase to Alpine 3.20."}
Expand Down