FROM debian:12 RUN apt-get update && apt-get install -y curl WORKDIR /app COPY hello.sh . RUN chmod +x hello.sh ENV NAME=Trainee CMD ["./hello.sh"]