Update my_example.Dockerfile

This commit is contained in:
bjoernellens1 2023-10-23 11:24:08 +02:00 committed by GitHub
parent c38c765654
commit 8470094d62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"]