Skip to content

Commit

Permalink
fix(ci): remove --omit=dev for sveltekit app build
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanBreck committed Sep 5, 2024
1 parent 5e4957d commit 237f786
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ WORKDIR /app

COPY ["package.json", "package-lock.json*", "./"]

RUN npm ci --omit=dev --ignore-scripts
RUN npm ci --ignore-scripts

COPY . .

ARG PUBLIC_ASSETS_PATH

RUN npm ci --omit=dev
RUN npm ci

RUN npm run build

Expand Down

0 comments on commit 237f786

Please sign in to comment.