I'm new to docker but I want to run all medusa services like redis and postgres with docker, I get this error: Error in loading config: Cannot find module '/app/medusa-config', I think the issue is in my Dockerfile
docker-compose.yml
services:
medusa:
build:
context: .
dockerfile: Dockerfile
ports:
- "9000:9000"
...
Dockerfile:
FROM node:20
WORKDIR /app
COPY server/medusa /app
RUN npm install
EXPOSE 9000
CMD ["npm", "run", "dev"]