Create hello-world.Dockerfile

This commit is contained in:
bjoernellens1 2023-10-23 11:44:31 +02:00 committed by GitHub
parent aad2eef6dd
commit a559172718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,9 @@
# explicitly use Debian for maximum cross-architecture compatibility
FROM debian:bullseye-slim AS hello-world
WORKDIR /APP
COPY ./docker .
RUN chmod +x hello.sh
CMD ["/APP/hello.sh"]