Skip to content

Commit

Permalink
updated tests dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmanos committed Feb 21, 2025
1 parent cb3da34 commit 7ac48b3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ WORKDIR /home/node/app
# Install dependencies first so rebuild of these layers is only needed when dependencies change
COPY package.json yarn.lock .
COPY .env.template .env

COPY lib/ ./lib/
WORKDIR /home/node/app/lib/core
RUN yarn cache clean -f && yarn install && yarn build && rm -rf node_modules && yarn install --production

WORKDIR /home/node/app
RUN yarn cache clean -f && yarn install


Expand Down

0 comments on commit 7ac48b3

Please sign in to comment.