Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Holusion/eCorpus
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e5c7a904eaf2b1b284356067cc01ae27e19eff43
Choose a base ref
..
head repository: Holusion/eCorpus
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bf01ec0d0321d2eafd5ae579278898a71da7d68e
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 .github/workflows/build.yml
  2. +1 −1 Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:
node-version: 16
cache: 'npm'
- name: install voyager dependencies
run: (cd source/voyager && npm ci)
run: (cd source/voyager && npm ci --legacy-peer-deps)
- name: install ui dependencies
run: npm ci && (cd source/ui && npm ci)
- name: build voyager
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ COPY source/server/package*.json /app/source/server/
RUN (cd /app/source/server && npm ci)

COPY source/voyager/package*.json /app/source/voyager/
RUN (cd /app/source/voyager && npm ci)
RUN (cd /app/source/voyager && npm ci --legacy-peer-deps)

COPY source/ui/package*.json /app/source/ui/
RUN (cd /app/source/ui && npm ci)