We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43588fc commit b017183Copy full SHA for b017183
Dockerfile
@@ -43,6 +43,11 @@ COPY package.json ./
43
# and any `src/schema` used during development.
44
COPY schema ./schema
45
COPY src/schema ./src/schema
46
+# Ensure schema/latest is available under src/schema/latest so imports from
47
+# `src/...` using `../schema/latest/...` resolve correctly during the build
48
+RUN if [ -d schema/latest ]; then \
49
+ mkdir -p src/schema/latest && cp -r schema/latest/* src/schema/latest/; \
50
+ fi
51
52
# Remove Windows-specific Rollup package and install dependencies
53
RUN npm pkg delete devDependencies.@rollup/rollup-win32-x64-msvc && \
0 commit comments