1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-14 09:08:32 +00:00

Pin node version to 18.19 to prevent ordering diff between backend and frontend

This commit is contained in:
Jeremie Pardou 2024-03-28 11:27:13 +01:00
parent ff21d31f5f
commit e1ca40de51

View file

@ -1,4 +1,7 @@
FROM node:18-bullseye as base
# Pin the version to 18.19 instead of 18 because somehow the ordering of utf-8 chars
# has changed in 18.20.0 which breaks the ordering compatibility between the frontend
# and the backend.
FROM node:18.19-bullseye as base
ARG UID
ENV UID=${UID:-9999}