Skip to content

Commit

Permalink
Release 3.9.8 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Jul 17, 2023
1 parent e5acf88 commit edc5c2d
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 3,808 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.9.8 2023-07-17 <dave at tiredofit dot ca>

### Changed
- Move to PHP 8.2 and modernize Dockerfile


## 3.9.7 2022-11-23 <dave at tiredofit dot ca>

### Added
Expand Down
15 changes: 9 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
FROM docker.io/tiredofit/nginx-php-fpm:8.1
ARG PHP_VERSION=8.2
ARG DISTRO="alpine"

FROM docker.io/tiredofit/nginx-php-fpm:${PHP_VERSION}-${DISTRO}
LABEL maintainer="Dave Conroy (github.com/tiredofit)"

ENV CRON_PERIOD=60 \
Expand All @@ -19,10 +22,10 @@ ENV CRON_PERIOD=60 \
IMAGE_NAME="tiredofit/matomo" \
IMAGE_REPO_URL="https://github.com/tiredofit/docker-matomo"

RUN set -x && \
apk update && \
apk upgrade && \
rm -rf /var/cache/apk/* /usr/src/*
RUN source /assets/functions/00-container && \
set -x && \
package update && \
package upgrade && \
package cleanup

### Add Files
COPY install /
Loading

0 comments on commit edc5c2d

Please sign in to comment.