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
When building the application through the dockerfile, I get an error:
It is likely that the environment of the docker image affects the operation, since such an error does not occur when building locally using similar commands.
Below is the docker file itself: FROM node:20-alpine AS build
thanks @ohmygodismax for your report. I need to investigate but at the moment I have limited time.
Can you find that file inside the docker file system?
gioboa
changed the title
Error when building a docker container (virtual:mf-REMOTE_ENTRY_ID)
docker: Error when building a docker container (virtual:mf-REMOTE_ENTRY_ID)
Jan 27, 2025
When building the application through the dockerfile, I get an error:
It is likely that the environment of the docker image affects the operation, since such an error does not occur when building locally using similar commands.
Below is the docker file itself:
FROM node:20-alpine AS build
WORKDIR /
COPY package.json package-lock.json tsconfig.json tsconfig.app.json tsconfig.node.json vite.config.ts index.html ./
COPY .npmrc ./
RUN npm ci
COPY ./src ./src
COPY ./public ./public
RUN npm run build --omit=dev
FROM nginx:alpine-slim
COPY --from=build /dist /var/www/
COPY ./k8s/config/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
The text was updated successfully, but these errors were encountered: