You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have a problem where my container won't start because reflect-metadata is not found. I already check it via docker build log and the images that I have the reflect-metadata dependency. For make this image, I directly make an image from the build directory with Dockerfile and docker-compose as follows:
FROM node:lts-alpine AS base
USER root
RUN npm install -g pnpm
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --prod
COPY . .
CMD ["node", "bin/server.js"]
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello, I have a problem where my container won't start because reflect-metadata is not found. I already check it via
docker build
log and the images that I have the reflect-metadata dependency. For make this image, I directly make an image from the build directory with Dockerfile and docker-compose as follows:So, what's that makes it not found?
Beta Was this translation helpful? Give feedback.
All reactions