properly add src/ to docker image
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 33s Details

This commit is contained in:
Ladd Hoffman 2024-04-20 12:48:52 -05:00
parent a500f01b69
commit 81d28b9ce7
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@ FROM node
WORKDIR /app
ADD package.json package-lock.json contract-addresses.json src/ /app/
ADD package.json package-lock.json contract-addresses.json /app/
ADD src/ /app/src/
RUN npm ci