feat: enable progressive web app

fix: update packages to fix vulnerabilities
docs: add documentation about trivy
This commit is contained in:
Miguel Ribeiro
2024-02-27 19:04:04 +01:00
committed by GitHub
parent caa97f1d55
commit a2a315e34d
19 changed files with 257 additions and 8 deletions
+3
View File
@@ -4,6 +4,9 @@ FROM php:8.0.5-fpm-alpine
# Set working directory to /var/www/html
WORKDIR /var/www/html
# Update packages
RUN apk update && apk upgrade
# Install SQLite3 and its dependencies
RUN apk add --no-cache sqlite-dev \
&& docker-php-ext-install pdo pdo_sqlite \