@mcpmake/core 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
# Keep this base-image tag IN LOCKSTEP with the "playwright" version in
|
|
2
|
+
# package.json.hbs (currently 1.59.1). Playwright requires the library version
|
|
3
|
+
# and the bundled browser binaries to match, or chromium.launch() fails at
|
|
4
|
+
# runtime ("browser not found"). Bump both together.
|
|
5
|
+
FROM mcr.microsoft.com/playwright:v1.59.1-noble AS builder
|
|
2
6
|
|
|
3
7
|
WORKDIR /app
|
|
4
8
|
COPY package.json package-lock.json ./
|
|
@@ -7,7 +11,7 @@ COPY tsconfig.json ./
|
|
|
7
11
|
COPY src/ src/
|
|
8
12
|
RUN npm run build
|
|
9
13
|
|
|
10
|
-
FROM mcr.microsoft.com/playwright:v1.
|
|
14
|
+
FROM mcr.microsoft.com/playwright:v1.59.1-noble
|
|
11
15
|
|
|
12
16
|
LABEL org.opencontainers.image.title="{{serverName}}"
|
|
13
17
|
ENV NODE_ENV=production
|
package/package.json
CHANGED