This commit is contained in:
platane
2020-07-20 08:58:27 +02:00
parent c78ef253a1
commit 6815912b18

View File

@@ -4,12 +4,12 @@ RUN apt-get update \
&& apt-get install -y --no-install-recommends gifsicle graphicsmagick \
&& rm -rf /var/lib/apt/lists/*
COPY tsconfig.json package.json yarn.lock ./platane-aa/
COPY packages ./platane-aa/packages/
COPY tsconfig.json package.json yarn.lock /github/platane.aa/
COPY packages /github/platane.aa/
RUN ( cd ./platane-aa ; yarn install --frozen-lockfile )
RUN ( cd /github/platane.aa/ ; yarn install --frozen-lockfile )
RUN ( cd ./platane-aa ; yarn build:action )
RUN ( cd /github/platane.aa/ ; yarn build:action )
CMD ["find", "/github"]
# CMD ["node", "./generate-snake-game-from-github-contribution-grid/packages/action/dist/index.js"]