Skip to content

Commit

Permalink
Error fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
shammowla committed Sep 5, 2024
1 parent ce54618 commit 1ba7a25
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ajo/content-cards/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV APP_DOMAIN=$APP_DOMAIN
WORKDIR /app

COPY package*.json ./
RUN npm ci
RUN npm ci --ignore-scripts

COPY . .

Expand Down
2 changes: 1 addition & 1 deletion ajo/in-app-messages/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV APP_DOMAIN=$APP_DOMAIN
WORKDIR /app

COPY package*.json ./
RUN npm ci
RUN npm ci --ignore-scripts

COPY . .

Expand Down
2 changes: 1 addition & 1 deletion ajo/personalization-client-side/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV APP_DOMAIN=$APP_DOMAIN
WORKDIR /app

COPY package*.json ./
RUN npm ci
RUN npm ci --ignore-scripts

COPY . .

Expand Down
2 changes: 1 addition & 1 deletion ajo/personalization-server-side/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV APP_DOMAIN=$APP_DOMAIN
WORKDIR /app

COPY package*.json ./
RUN npm ci
RUN npm ci --ignore-scripts

COPY . .

Expand Down
2 changes: 1 addition & 1 deletion ajo/proposition-interaction-tracking/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV APP_DOMAIN=$APP_DOMAIN
WORKDIR /app

COPY package*.json ./
RUN npm ci
RUN npm ci --ignore-scripts

COPY . .

Expand Down

0 comments on commit 1ba7a25

Please sign in to comment.