Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.
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
16 changes: 9 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# Versions
FROM dunglas/frankenphp:1-php8.3 AS frankenphp_upstream
FROM dunglas/frankenphp:1-php8.3-alpine AS frankenphp_upstream

# Base FrankenPHP image
FROM frankenphp_upstream AS frankenphp_base
Expand All @@ -10,12 +10,14 @@ WORKDIR /app
VOLUME /app/var/

# persistent / runtime deps
RUN apt-get update && apt-get install -y --no-install-recommends \
acl \
file \
gettext \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -eux; \
apk add --no-cache \
acl \
fcgi \
file \
gettext \
git \
;

RUN set -eux; \
install-php-extensions \
Expand Down
80 changes: 40 additions & 40 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/packages/sensiolabs_typescript.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sensiolabs_typescript:
swc_version: v1.7.14
swc_version: v1.7.40
16 changes: 8 additions & 8 deletions devenv.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"devenv": {
"locked": {
"dir": "src/modules",
"lastModified": 1730028891,
"lastModified": 1730213537,
"owner": "cachix",
"repo": "devenv",
"rev": "a337f8862efa9bde348c48a48b5b943f710604dd",
"rev": "5c046eeafd13f7a2b9fc733f70ea17571b24410f",
"type": "github"
},
"original": {
Expand Down Expand Up @@ -53,10 +53,10 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1729980323,
"lastModified": 1730170245,
"owner": "nixos",
"repo": "nixpkgs",
"rev": "86e78d3d2084ff87688da662cf78c2af085d8e73",
"rev": "30c9efeef01e2ad4880bff6a01a61dd99536b3c9",
"type": "github"
},
"original": {
Expand All @@ -68,10 +68,10 @@
},
"nixpkgs-stable": {
"locked": {
"lastModified": 1729973466,
"lastModified": 1730137625,
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "cd3e8833d70618c4eea8df06f95b364b016d4950",
"rev": "64b80bfb316b57cdb8919a9110ef63393d74382a",
"type": "github"
},
"original": {
Expand All @@ -91,10 +91,10 @@
"nixpkgs-stable": "nixpkgs-stable"
},
"locked": {
"lastModified": 1729104314,
"lastModified": 1730302582,
"owner": "cachix",
"repo": "pre-commit-hooks.nix",
"rev": "3c3e88f0f544d6bb54329832616af7eb971b6be6",
"rev": "af8a16fe5c264f5e9e18bcee2859b40a656876cf",
"type": "github"
},
"original": {
Expand Down
2 changes: 1 addition & 1 deletion importmap.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
'version' => '6.5.6',
],
'@codemirror/autocomplete' => [
'version' => '6.18.1',
'version' => '6.18.2',
],
'@codemirror/lint' => [
'version' => '6.8.2',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
"dprint": "^0.47.5",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"typescript-eslint": "^8.12.1"
"typescript-eslint": "^8.12.2"
}
}
Loading