DEV Community

Discussion on: Using Docker for Experimenting with Code

Collapse
 
betauliansyah profile image
Beta Uliansyah • Edited

Whole tutorial above will lead you to an error: standard_init_linux.go:190: exec user process caused "permission denied"

The solution is available in github.com/programming-liftoff/doc...

in Dockerfile, replace
RUN chmod 744 /entry_point.sh
with
RUN ["chmod", "+x", "/entry_point.sh"]