You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
ARG REPO_LOCATION=
2
-
FROM ${REPO_LOCATION}node:20 as builder
2
+
FROM ${REPO_LOCATION}node:20-alpine as builder
3
3
4
4
### --------------------------------- Build
5
5
# Install packages and build
@@ -10,7 +10,7 @@ RUN npm ci --no-audit && \
10
10
npm ci --omit=dev --no-audit
11
11
12
12
# Deployment container
13
-
FROM ${REPO_LOCATION}node:20
13
+
FROM ${REPO_LOCATION}node:20-alpine
14
14
15
15
# LABEL org.opencontainers.image.description="NR Broker handles the business logic of authenticating and validating requests for automated processes to access secrets"
0 commit comments