Build Docker image
#3834
-
I'm trying to build Docker image of my application using Debian Dockerfile from documentation and it fails with:
What's wrong? |
Beta Was this translation helpful? Give feedback.
Answered by
PepaRokos
Apr 14, 2025
Replies: 1 comment 1 reply
-
As far as the build process, its telling you what's wrong:
As far as why that's the case: the Dockerfile already adds this target RUN rustup target add wasm32-unknown-unknown But it looks like for some reason I can think of two possible explanations:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I added
RUN rustup default stable
beforeRUN rustup target add wasm32-unknown-unknown
to my Dockerfile and it fixed my issue. Build now works. Thank you.