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 39a4a6d commit cb035e1Copy full SHA for cb035e1
.dockerignore
@@ -1,6 +1,5 @@
1
*
2
!package.json
3
!pnpm-lock.yaml
4
-!src/
5
-!tsconfig.base.json
6
-!tsconfig.json
+!bin/
+!dist/
Dockerfile
@@ -5,10 +5,7 @@ COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile --no-optional
COPY . .
7
8
-FROM installer AS builder
9
-RUN pnpm build
10
-
11
FROM node:22-alpine
12
WORKDIR /usr/src/app
13
-COPY --from=builder /usr/src/app ./
+COPY --from=installer /usr/src/app ./
14
ENTRYPOINT [ "node", "/usr/src/app/bin/markdown-confluence-sync-action.js"]
0 commit comments