chadstart 1.0.4 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Dockerfile CHANGED
@@ -9,7 +9,7 @@ RUN npm ci --omit=dev
9
9
  FROM node:lts-alpine AS runner
10
10
  WORKDIR /app
11
11
  # Runtime dependencies
12
- RUN apk add --no-cache bash python3 go ruby g++ \
12
+ RUN apk add --no-cache bash python3 go ruby g++ jsonnet \
13
13
  && addgroup -S nodejs && adduser -S nodejs -G nodejs \
14
14
  && mkdir -p /app/{uploads,public,functions} && chown -R nodejs:nodejs /app
15
15
  COPY --from=deps --chown=nodejs:nodejs /app/node_modules ./node_modules