blob: 2813d318670eacf4c33cc4f0eb0fb02b45b72445 (
plain)
1
2
3
4
5
6
7
8
|
ARG IMAGE=ubuntu:20.04
FROM $IMAGE
RUN apt-get update && \
apt-get install -y --no-install-recommends \
gcc clang libc6-dev ca-certificates
ENV CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER=true
|