diff --git a/docs/guides/ecosystem/docker.md b/docs/guides/ecosystem/docker.md index 26a1eaccde..16e2c0c0f5 100644 --- a/docs/guides/ecosystem/docker.md +++ b/docs/guides/ecosystem/docker.md @@ -32,7 +32,7 @@ RUN cd /temp/prod && bun install --frozen-lockfile --production # copy node_modules from temp directory # then copy all (non-ignored) project files into the image -FROM install AS prerelease +FROM base AS prerelease COPY --from=install /temp/dev/node_modules node_modules COPY . .