-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(testing): add testing in docker environment
add rifraf to remove directory
- Loading branch information
Showing
5 changed files
with
5,196 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from node:16-stretch | ||
|
||
WORKDIR /sol-merger | ||
COPY test-cli.sh test-docker-entrypoint.sh package.json package-lock.json tsconfig.json tsconfig.app.json tslint.json ./ | ||
COPY test test/ | ||
ADD dist dist/ | ||
ENV NPM_REGISTRY_URL=http://localhost:4873 | ||
ENV NPM_USERNAME=admin | ||
ENV NPM_PASSWORD=admin | ||
ENV NPM_EMAIL=admin@example.com | ||
ENV NPM_SCOPE=test-org | ||
RUN npm i | ||
# RUN npm run build | ||
CMD /sol-merger/test-docker-entrypoint.sh |
Oops, something went wrong.