From e1254f28fa4d68a9825c8805aa4f33c0444adc35 Mon Sep 17 00:00:00 2001 From: Ben Gourley Date: Wed, 28 Oct 2020 10:54:22 +0000 Subject: [PATCH] test(expo): Pin expo publisher container to node 12 The version of expo-cli we're using is not compatible with node 14 and the LTS container recently bumped to that version, causing CI to fail. --- dockerfiles/Dockerfile.expo-publisher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile.expo-publisher b/dockerfiles/Dockerfile.expo-publisher index 4f5de887d1..320592da68 100644 --- a/dockerfiles/Dockerfile.expo-publisher +++ b/dockerfiles/Dockerfile.expo-publisher @@ -1,4 +1,4 @@ -FROM node:lts-alpine +FROM node:12-alpine RUN apk add --update bash git python