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