File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,18 @@ RUN apt-get update \
55 && rm -rf /var/lib/apt/lists/*
66
77COPY tsconfig.json package.json yarn.lock /github/platane.aa/
8- COPY packages /github/platane.aa/
8+ COPY packages /github/platane.aa/packages
99
10- RUN ( cd /github/platane.aa/ ; yarn install --frozen-lockfile )
10+ RUN ( \
11+ cd /github/platane.aa \
12+ && find . \
13+ && yarn install --frozen-lockfile \
14+ && yarn build:action \
15+ && mv packages/action/dist/* . \
16+ && rm -rf packages tsconfig.json package.json yarn.lock node_modules \
17+ )
1118
12- RUN ( cd /github/platane.aa/ ; yarn build:action )
19+ CMD [ "find" , " /github/platane.aa" ]
1320
14- CMD ["find" , "/github" ]
1521# CMD ["node", "./generate-snake-game-from-github-contribution-grid/packages/action/dist/index.js"]
1622
You can’t perform that action at this time.
0 commit comments