I have add line RUN go get github.com/cespare/reflex to Dockerfile
After that, i use command command: reflex -r "\.go$$" -s -- sh -c "go run ./" in docker-compose.yml
But when I run docker-compose up --build there are an error when running the command
Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "reflex": executable file not found in $PATH: unknown
I have add line
RUN go get github.com/cespare/reflex
to Dockerfile After that, i use commandcommand: reflex -r "\.go$$" -s -- sh -c "go run ./"
in docker-compose.ymlBut when I run
docker-compose up --build
there are an error when running the command Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "reflex": executable file not found in $PATH: unknownI'm using Window 10 and Go 1.20
Can someone check it for me pls, thanks!