We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 438c9b1 commit e7187d0Copy full SHA for e7187d0
ts/demo-functions/build/kubeval.Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:10-alpine as builder
+FROM node:lts-alpine as builder
2
3
RUN mkdir -p /home/node/app && \
4
chown -R node:node /home/node/app
@@ -9,7 +9,7 @@ WORKDIR /home/node/app
9
10
# Install dependencies and cache them.
11
COPY --chown=node:node package*.json ./
12
-RUN npm ci
+RUN npm ci --ignore-scripts
13
14
# Build the source.
15
COPY --chown=node:node tsconfig.json .
@@ -20,7 +20,7 @@ RUN npm run build && \
20
21
#############################################
22
23
-FROM node:10-alpine
+FROM node:lts-alpine
24
25
RUN apk add curl && \
26
curl -sSLf https://github.com/instrumenta/kubeval/releases/download/0.14.0/kubeval-linux-amd64.tar.gz | \
0 commit comments