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
This module looks very promising thank you for that. For one of my small projects I wanted to use this, just followed the guidelines. Unfortunately, it got stuck on pnpm build on docker
I can't reproduce it on Stackblitz since this is related to docker.
Here is my dockerfile
# syntax=docker/dockerfile:1
ARG NODE_VERSION=20.18.1
ARG PORT=3000
FROM node:${NODE_VERSION}-alpine AS node
ENV PORT=$PORT
COPY / /
RUN npm install -g pm2@latest
RUN npm install -g pnpm
WORKDIR "/"
RUN pnpm install
RUN pnpm build
EXPOSE 80
WORKDIR "/"
CMD pm2-runtime ecosystem.config.cjs
It got stuck on pnpm build and the latest things that stdout prints;
🐛 The bug
This module looks very promising thank you for that. For one of my small projects I wanted to use this, just followed the guidelines. Unfortunately, it got stuck on pnpm build on docker
I can't reproduce it on Stackblitz since this is related to docker.
Here is my dockerfile
It got stuck on pnpm build and the latest things that stdout prints;
🛠️ To reproduce
Can't do it
🌈 Expected behavior
Complete the build
ℹ️ Additional context
No response
The text was updated successfully, but these errors were encountered: