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
Hi. I suspect this is related to something specific to our configuration, as I don't see anyone else experiencing this. We have a fairly simple dockerfile:
FROM node:22-alpine
RUN mkdir -p /src
WORKDIR /src
RUN apk update && apk add build-base python3
COPY package.json package-lock.json ./
RUN npm ci
COPY next.config.js middleware.ts sentry.client.config.ts sentry.server.config.ts sentry.edge.config.ts tailwind.config.js tsconfig.json webpack.config.js postcss.config.js ./
COPY lib lib
COPY app app
COPY scripts scripts
it worked totally fine, but today it broke: node_modules/.bin is simply missing. It worked fine with node:22-alpine@sha256:ba898e86c2cc720c8cf2ae05f8d2d4697fe0c8ca3e920d6fbf14a6cbf50bb9ca, but node:22-alpine@sha256:f200d5ce9f0c43df6f3a6b97b692f998cce270f1409864de5fbb2e61836121f2 misses node_modules/.bin for whatever reason. That's on an exactly same code without any changes but the base image sha.
Hi. I suspect this is related to something specific to our configuration, as I don't see anyone else experiencing this. We have a fairly simple dockerfile:
it worked totally fine, but today it broke:
node_modules/.bin
is simply missing. It worked fine withnode:22-alpine@sha256:ba898e86c2cc720c8cf2ae05f8d2d4697fe0c8ca3e920d6fbf14a6cbf50bb9ca
, butnode:22-alpine@sha256:f200d5ce9f0c43df6f3a6b97b692f998cce270f1409864de5fbb2e61836121f2
missesnode_modules/.bin
for whatever reason. That's on an exactly same code without any changes but the base imagesha
.Environment
Full env
Working
Not working
Expected Behavior
.bin
being present innode_modules
Current Behavior
.bin
is missingSteps to Reproduce
Sorry, can't share the full code.
The text was updated successfully, but these errors were encountered: