Skip to content

Commit

Permalink
add .npmrc to docker-image to disable npm update checks
Browse files Browse the repository at this point in the history
  • Loading branch information
fdietze authored and mergify[bot] committed May 28, 2024
1 parent d4b9298 commit ded897c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ app-build:
SAVE ARTIFACT node_modules
SAVE ARTIFACT package-lock.json
SAVE ARTIFACT package.json
SAVE ARTIFACT .npmrc

app-deploy-litefs:
FROM flyio/litefs:0.5.10
Expand All @@ -93,7 +94,7 @@ docker-image:

# npm run build
COPY --dir other app server public types index.js tsconfig.json remix.config.js tailwind.config.ts postcss.config.js components.json ./
COPY --dir +app-build/server-build +app-build/build +app-build/public +app-build/node_modules +app-build/package-lock.json +app-build/package.json ./
COPY --dir +app-build/server-build +app-build/build +app-build/public +app-build/node_modules +app-build/package-lock.json +app-build/package.json +app-build/.npmrc ./


# startup & migrations
Expand Down

0 comments on commit ded897c

Please sign in to comment.