mobilefish

Untitled

Dec 4th, 2019
436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. FROM amazoncorretto:latest
  2. ADD  test-1.0.0.jar /tmp
  3. WORKDIR /tmp
  4. RUN yum update -y
  5. RUN yum install -y python3-pip && pip3 install awscli --upgrade --user
  6. RUN yum install -y awslogs
  7. COPY test.sh /tmp
  8. RUN chmod +x /tmp/test.sh
  9. ENTRYPOINT ["/tmp/test.sh"]
Add Comment
Please, Sign In to add comment