📌(yjs) stop pinning node to minor version on yjs docker image (#1005)

We want to build the yjs Docker image with the latest minor version in
order to avoid outdated images.
This commit is contained in:
Samuel Paccoud
2025-06-17 11:43:05 +02:00
committed by GitHub
parent a83902a0d4
commit a99c813421
2 changed files with 2 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ and this project adheres to
### Changed
- 📌(yjs) stop pinning node to minor version on yjs docker image #1005
- 🧑‍💻(docker) add .next to .dockerignore #1055
- 🧑‍💻(docker) handle frontend development images with docker compose #1033
- 🧑‍💻(docker) add y-provider config to development environment #1057

View File

@@ -1,4 +1,4 @@
FROM node:22.9-alpine AS base
FROM node:22-alpine AS base
# Upgrade system packages to install security updates
RUN apk update && \