Skip to content

Commit

Permalink
Removed files not used in Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
greggbjensen committed Aug 13, 2024
1 parent 452792f commit 1e12852
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion prdeploy-app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ EXPOSE 80

FROM node:18 as build
WORKDIR /src
COPY ["package.json", "package-lock.json", ".npmrc", "./"]
COPY ["package.json", "package-lock.json", ".nvmrc", "./"]
RUN npm ci
COPY . .
RUN npm run build
Expand Down
1 change: 0 additions & 1 deletion prdeploy-webhooks/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ RUN npm run build
FROM base AS final
WORKDIR /app
COPY --from=build /src/dist/src/ /app/dist/
COPY --from=build /src/src/settings/ /app/settings/
COPY --from=build /src/templates/ /app/templates/
COPY --from=build /src/node_modules/ /app/node_modules/
ENTRYPOINT ["node", "/app/dist/app.js"]

0 comments on commit 1e12852

Please sign in to comment.