I try to use my Dockerfile at https://labs.play-with-docker.com. Its EOL conversion is LF. My file:
FROM alpine
RUN apk --no-cache add curl
RUN curl -fsSL https://deno.land/x/install/install.sh | sh
WORKDIR /root/.deno/bin
# To print deno version at container start.
CMD ["/root/.deno/bin/deno", "--version"]
I start the commands:
docker build -t deno .
docker run --rm --name deno deno
But I get the error:
standard_init_linux.go:211: exec user process caused "no such file or directory"
Why does it happen? How can I fix it?