• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1from ubuntu:16.04
2
3RUN apt-get update && apt-get upgrade -y
4RUN apt-get install -y curl
5
6ENTRYPOINT ["curl", "--retry", "5", "-X", "PUT", "-T"]
7
8