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.
2 parents cdace60 + 1c1e77e commit 823257bCopy full SHA for 823257b
docker-image/src/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:10-alpine
+FROM node:16-alpine
2
3
# hadolint ignore=DL3018
4
RUN apk add --no-cache openssl
docker-image/test/test_image_foundations.py
@@ -29,8 +29,8 @@ def test_solid_home_dir_exists_and_owned_by_node(host):
29
def test_node_command_is_available(host):
30
assert host.exists("node")
31
32
-def test_node_version_is_10(host):
33
- assert host.check_output("node --version").startswith('v10')
+def test_node_version_is_16(host):
+ assert host.check_output("node --version").startswith('v16')
34
35
def test_openssl_command_is_available(host):
36
assert host.exists("openssl")
0 commit comments