© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Gijo Varghese
A WordPress speed enthusiast
Is the Dockerfile in the correct directory you're pointing?
Gustavo Benedito Costa
Deaf-born, computer science student and language lover
Yes, here is the Dockerfile codes:
Dockerfile
FROM alpine COPY quickstart.sh / CMD ["/quickstart.sh"]
Dockerfile and quickstart.sh are in the same directory (home).
quickstart.sh
home
Can you try this is your .Dockerfile
.Dockerfile
COPY . /home/app/ WORKDIR /home/app/ CMD ["/home/app/quickstart.sh"]