Skip to content

Commit

Permalink
Update to use Node 10 (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
tebeka authored and pavius committed Jun 8, 2018
1 parent 50e84c4 commit 22eeb23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/reference/runtimes/nodejs/nodejs-reference.md
Expand Up @@ -19,7 +19,7 @@ See [deploying Functions from Dockerfile](/docs/tasks/deploy-functions-from-dock
```
ARG NUCLIO_LABEL=0.5.0
ARG NUCLIO_ARCH=amd64
ARG NUCLIO_BASE_IMAGE=node:9.3.0-alpine
ARG NUCLIO_BASE_IMAGE=node:10.3-alpine
ARG NUCLIO_ONBUILD_IMAGE=nuclio/handler-builder-nodejs-onbuild:${NUCLIO_LABEL}-${NUCLIO_ARCH}
# Supplies processor uhttpc, used for healthcheck
Expand Down
2 changes: 1 addition & 1 deletion pkg/processor/build/runtime/nodejs/runtime.go
Expand Up @@ -42,7 +42,7 @@ func (n *nodejs) GetProcessorDockerfileInfo(versionInfo *version.Info) (*runtime
versionInfo.Arch)

// set the default base image
processorDockerfileInfo.BaseImage = "node:9.3.0-alpine"
processorDockerfileInfo.BaseImage = "node:10.3-alpine"
processorDockerfileInfo.OnbuildArtifactPaths = map[string]string{
"/home/nuclio/bin/processor": "/usr/local/bin/processor",
"/home/nuclio/bin/wrapper.js": "/opt/nuclio/wrapper.js",
Expand Down

0 comments on commit 22eeb23

Please sign in to comment.