We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39e261f commit 90d1f25Copy full SHA for 90d1f25
end2end/server/.dockerignore
@@ -0,0 +1 @@
1
+node_modules/
end2end/server/Dockerfile
@@ -1,11 +1,12 @@
FROM node:24-slim
2
3
+USER node
4
WORKDIR /app
5
-COPY package.json package-lock.json /app/
6
+COPY --chown=node:node package.json package-lock.json ./
7
+RUN npm ci --ignore-scripts
8
-RUN npm ci
9
+COPY --chown=node:node . ./
10
+RUN node --run check:types
11
-COPY . /app/
-
-CMD ["node" , "/app/app.ts"]
12
+CMD ["node" , "app.ts"]
end2end/server/src/zen/apps.ts
@@ -4,7 +4,7 @@ export type App = {
id: number;
token: string;
configUpdatedAt: number;
-}
+};
const apps: App[] = [];
0 commit comments