Skip to content

Commit

Permalink
Remove make package from Docker file & npm audit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rushi committed Sep 11, 2024
1 parent 9c5b382 commit 71e62f1
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 28 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG NODE_VERSION=20
FROM node:${NODE_VERSION}-bookworm-slim AS builder

RUN apt-get update && apt-get install -y make
RUN apt-get update

WORKDIR /app

Expand All @@ -12,7 +12,7 @@ RUN npm ci --include=dev
COPY . .

FROM node:${NODE_VERSION}-bookworm-slim AS base
RUN apt-get update && apt-get install -y make
RUN apt-get update
WORKDIR /app

RUN chown -R node:node /app
Expand Down
109 changes: 83 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 71e62f1

Please sign in to comment.