From 641cc840c6781eb53686c8822fb34d055ebd535b Mon Sep 17 00:00:00 2001 From: William Perron Date: Wed, 11 Aug 2021 09:27:03 -0400 Subject: [PATCH] fix: use pinned version for alpine (#153) Make does not work with alpine 3.14, this commit pins the alpine version to 3.13 to fix the issue. The root cause seems to be [this issue][1] with Alpine and Docker 20.10.5 and earlier. How this issue presents itself in other container runtimes is unclear, but consensus seems to be that reverting to alpine 3.13 fixes the issue. [1] https://github.com/alpinelinux/docker-alpine/issues/182 Fixes #152 --- alpine.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine.dockerfile b/alpine.dockerfile index 26c1f57..41dca40 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -1,4 +1,4 @@ -FROM frolvlad/alpine-glibc +FROM frolvlad/alpine-glibc:alpine-3.13 ENV DENO_VERSION=1.13.0