Dockerfile for central back-end

Hey everyone.

I try to deploy odk central but I want to use docker for my backe-end and my front-end app and for back-end I use this code for dockerFile

FROM node:20-alpine3.20
RUN apk add --no-cache make
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8383
CMD [ "make", "run" ]
and when I try to run docker image I got this error 
2024-08-12 16:39:20 node lib/bin/enforce-node-version.js
2024-08-12 16:39:20 node lib/bin/run-migrations.js
2024-08-12 16:39:21 Error: 
2024-08-12 16:39:21 make: *** [Makefile:35: migrations] Error 1

Welcome to the forum @Francisco_Gonzalez and thanks for adding your profile picture. It helps build community! When you get a chance, please introduce yourself on this forum thread.

Can you use the installation process in the documentation at https://docs.getodk.org/central-install/?