9 lines
213 B
Docker
9 lines
213 B
Docker
FROM node:26-bookworm
|
|
|
|
WORKDIR /test
|
|
|
|
COPY repro.mjs /test/repro.mjs
|
|
COPY verify-fix.mjs /test/verify-fix.mjs
|
|
COPY verify-integration.mjs /test/verify-integration.mjs
|
|
|
|
CMD ["node", "/test/verify-integration.mjs"]
|