From 70d701b2ee111710196272074d4eace426a45209 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Thu, 16 Feb 2023 20:32:51 +0100 Subject: [PATCH] Fix: add curl --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 05cb165..df2d037 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,4 @@ FROM rust:1.64.0-alpine3.16 -RUN curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh \ No newline at end of file +RUN apk add curl && \ + curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh \ No newline at end of file