Skip to content

Commit 1d92c3d

Browse files
committed
Update Dockerfiles to reflect new names of repo base tsconfigs
1 parent d547147 commit 1d92c3d

File tree

9 files changed

+9
-11
lines changed

9 files changed

+9
-11
lines changed

apps/internal-portal/backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM node:23-slim AS builder
66
WORKDIR /app
77

88
# Copy package files for dependency installation
9-
COPY package*.json tsconfig.json ./
9+
COPY package*.json tsconfig*.json ./
1010

1111
# Copy relevant packages
1212
COPY libs/types ./libs/types

apps/internal-portal/frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM node:23-slim AS builder
66
WORKDIR /app
77

88
# Copy package files for dependency installation
9-
COPY package*.json tsconfig.json ./
9+
COPY package*.json tsconfig*.json ./
1010

1111
# Copy relevant packages
1212
COPY libs/types ./libs/types

apps/property-tree/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM node:23-slim AS builder
66
WORKDIR /app
77

88
# Copy package files for dependency installation
9-
COPY package*.json tsconfig.json ./
9+
COPY package*.json tsconfig*.json ./
1010

1111
COPY apps/property-tree ./apps/property-tree
1212

core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM node:23-slim AS builder
66
WORKDIR /app
77

88
# Copy package files for dependency installation
9-
COPY package*.json tsconfig.json ./
9+
COPY package*.json tsconfig*.json ./
1010

1111
# Copy relevant packages
1212
COPY libs/types ./libs/types

services/communication/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ FROM node:23-slim AS builder
66
WORKDIR /app
77

88
# Copy root package files for dependency installation
9-
COPY package*.json ./
10-
COPY tsconfig.json ./
9+
COPY package*.json tsconfig*.json ./
1110

1211
# Copy relevant packages
1312
COPY libs/types ./libs/types

services/leasing/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM node:23-slim AS builder
66
WORKDIR /app
77

88
# Copy package files for dependency installation
9-
COPY package*.json tsconfig.json ./
9+
COPY package*.json tsconfig*.json ./
1010

1111
# Copy relevant packages
1212
COPY libs/types ./libs/types

services/property-management/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM node:23-slim AS builder
66
WORKDIR /app
77

88
# Copy package files for dependency installation
9-
COPY package*.json tsconfig.json ./
9+
COPY package*.json tsconfig*.json ./
1010

1111
# Copy relevant packages
1212
COPY libs/types ./libs/types

services/property/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ RUN apt-get update -y && apt-get install -y openssl
99
WORKDIR /app
1010

1111
# Copy root package files for dependency installation
12-
COPY package*.json ./
13-
COPY tsconfig.json ./
12+
COPY package*.json tsconfig*.json ./
1413

1514
# Copy relevant packages
1615
COPY libs/types ./libs/types

services/work-order/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM node:23-slim AS builder
66
WORKDIR /app
77

88
# Copy package files for dependency installation
9-
COPY package*.json tsconfig.json ./
9+
COPY package*.json tsconfig*.json ./
1010

1111
# Copy relevant packages
1212
COPY libs/types ./libs/types

0 commit comments

Comments
 (0)