Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ services:
- WAIT_HOSTS=db:27017
- ENVIRONMENT=development
- DATABASE=scriptureforge
- CHORUS_HG_EXE=chg
- MONGODB_CONN=mongodb://db:27017
- MONGODB_AUTHSOURCE=admin
- LANGUAGE_DEPOT_API_TOKEN=bogus-development-token
Expand Down
2 changes: 2 additions & 0 deletions docker/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ WORKDIR /data
# Copy in files needed for compilation, located in the repo root
COPY package.json pnpm-lock.yaml ./

# Install latest corepack version to work around a bug with signatures
RUN npm install -g corepack@latest
RUN corepack enable
RUN pnpm install

Expand Down
2 changes: 1 addition & 1 deletion docker/lfmerge/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM ghcr.io/sillsdev/lfmerge:2.0.140
FROM ghcr.io/sillsdev/lfmerge:2.0.141
# Do not add anything to this Dockerfile, it should stay empty
2 changes: 2 additions & 0 deletions docker/next-app/Dockerfile.next-app
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ COPY tsconfig.json pnpm-lock.yaml package.json postcss.config.cjs svelte.config.
COPY src /app/src
COPY static /app/static

# Install latest corepack version to work around a bug with signatures
RUN npm install -g corepack@latest
RUN corepack enable
RUN pnpm install
RUN pnpm run build
Expand Down
2 changes: 2 additions & 0 deletions docker/next-app/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ COPY tsconfig.json pnpm-lock.yaml package.json postcss.config.cjs svelte.config.
COPY src /app/src
COPY static /app/static

# Install latest corepack version to work around a bug with signatures
RUN npm install -g corepack@latest
RUN corepack enable
RUN pnpm install

Expand Down
2 changes: 2 additions & 0 deletions docker/ui-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ WORKDIR /data

COPY package.json pnpm-lock.yaml ./

# Install latest corepack version to work around a bug with signatures
RUN npm install -g corepack@latest
RUN corepack enable
RUN pnpm install

Expand Down
Loading