We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a2e7ba commit 1e47d9eCopy full SHA for 1e47d9e
Dockerfile
@@ -27,7 +27,10 @@ COPY --from=tinygo-base /go/bin/tinygo /go/bin/tinygo
27
COPY --from=tinygo-base /tinygo/src /tinygo/src
28
COPY --from=tinygo-base /tinygo/targets /tinygo/targets
29
30
-RUN apt-get install -y libllvm10 lld-10
+RUN cd /tinygo/ && \
31
+ apt-get update && \
32
+ apt-get install -y make clang-10 libllvm10 lld-10 && \
33
+ make wasi-libc
34
35
# tinygo-avr stage installs the needed dependencies to compile TinyGo programs for AVR microcontrollers.
36
FROM tinygo-base AS tinygo-avr
0 commit comments