Skip to content

Commit

Permalink
Fix CI/CD (maybe)
Browse files Browse the repository at this point in the history
  • Loading branch information
brookslybrand committed Mar 14, 2024
1 parent a6325ce commit cb5b845
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 @@ -15,7 +15,7 @@ FROM base as deps

WORKDIR /remixapp

ADD package.json package-lock.json ./
ADD package.json package-lock.json .npmrc ./
RUN npm install --include=dev

# Setup production node_modules
Expand All @@ -24,7 +24,7 @@ FROM base as production-deps
WORKDIR /remixapp

COPY --from=deps /remixapp/node_modules /remixapp/node_modules
ADD package.json package-lock.json ./
ADD package.json package-lock.json .npmrc ./
RUN npm prune --omit=dev

# Build the app
Expand Down

0 comments on commit cb5b845

Please sign in to comment.