Skip to content

Commit

Permalink
PR Reviews
Browse files Browse the repository at this point in the history
Signed-off-by: Kipruto <43873157+kelvinkipruto@users.noreply.github.com>
  • Loading branch information
kelvinkipruto committed Jul 18, 2024
1 parent 4196f47 commit 03ecc67
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ RUN pnpm fetch
COPY *.yaml *.json ./
COPY packages/commons-ui-core/package.json ./packages/commons-ui-core/package.json
COPY packages/commons-ui-next/package.json ./packages/commons-ui-next/package.json
COPY packages/hurumap-core/package.json ./packages/hurumap-core/package.json
COPY packages/hurumap-next/package.json ./packages/hurumap-next/package.json
# Next.js lints when doing production build
COPY packages/eslint-config-commons-ui/package.json ./packages/eslint-config-commons-ui/package.json
# TODO(kilemensi): Figure out why this is needed (charterafrica, codeforafrica)
Expand Down Expand Up @@ -442,6 +440,8 @@ CMD ["node", "dist/server.js"]

FROM base-deps as pesayetu-deps

COPY packages/hurumap-core/package.json ./packages/hurumap-core/package.json
COPY packages/hurumap-next/package.json ./packages/hurumap-next/package.json
COPY apps/pesayetu/package.json ./apps/pesayetu/package.json

# Use virtual store: https://pnpm.io/cli/fetch#usage-scenario
Expand Down Expand Up @@ -618,6 +618,8 @@ CMD ["node", "apps/vpnmanager/server.js"]

FROM base-deps as climatemappedafrica-deps

COPY packages/hurumap-core/package.json ./packages/hurumap-core/package.json
COPY packages/hurumap-next/package.json ./packages/hurumap-next/package.json
COPY apps/climatemappedafrica/package.json ./apps/climatemappedafrica/package.json

# Use virtual store: https://pnpm.io/cli/fetch#usage-scenario
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ codeforafrica:

climatemappedafrica:
$(COMPOSE_BUILD_ENV) $(COMPOSE) --env-file apps/climatemappedafrica/.env.local up climatemappedafrica --build

down:
$(COMPOSE_BUILD_ENV) $(COMPOSE) down --volumes

Expand Down

0 comments on commit 03ecc67

Please sign in to comment.