least privilege doesnt matter when its a container, right?

This commit is contained in:
2025-12-27 13:29:11 -08:00
parent c8fb149b80
commit 0c5c8d23db

View File

@@ -1,9 +1,7 @@
FROM node:25-alpine
USER node
WORKDIR /app
COPY . /app
WORKDIR /app
RUN npm install
ENTRYPOINT [ "node", "index.js" ]