From ba97699af6be6c46a7814afc12f139fbe9c3973b Mon Sep 17 00:00:00 2001 From: pantonshire Date: Tue, 22 Oct 2024 18:07:20 +0100 Subject: [PATCH] docker build fixes --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e5f940..97ecf28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM docker.io/library/rust:1.70-alpine AS wasm_builder +FROM docker.io/library/rust:1.82-alpine AS wasm_builder WORKDIR /app/ COPY utfdump/Cargo.toml utfdump/Cargo.lock ./ COPY utfdump/lib/ ./lib/ COPY utfdump/wasm/ ./wasm/ COPY utfdump/bin/ ./bin/ -RUN apk update && apk add --no-cache musl-dev wasm-pack +RUN apk update && apk add --no-cache musl-dev wasm-pack pkgconf openssl-dev openssl binaryen WORKDIR /app/wasm/ RUN wasm-pack build --release --target web