Skip to content

Commit

Permalink
fix: use pinned version for alpine (#153)
Browse files Browse the repository at this point in the history
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] alpinelinux/docker-alpine#182

Fixes #152
  • Loading branch information
wperron authored Aug 11, 2021
1 parent f88e3e0 commit 641cc84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alpine.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM frolvlad/alpine-glibc
FROM frolvlad/alpine-glibc:alpine-3.13

ENV DENO_VERSION=1.13.0

Expand Down

0 comments on commit 641cc84

Please sign in to comment.