diff --git a/docker/my_example.Dockerfile b/docker/my_example.Dockerfile index 97c556e..6fddc0a 100644 --- a/docker/my_example.Dockerfile +++ b/docker/my_example.Dockerfile @@ -4,5 +4,6 @@ FROM debian:bullseye-slim AS hello-world WORKDIR /APP COPY ./docker . +RUN chmod +x hello.sh -CMD ["cat /APP/hello.txt"] +ENTRYPOINT ["/APP/hello.sh"]