Dockerfile 462 B

12345678910111213
  1. FROM ubuntu:latest
  2. LABEL maintainer="Celestino Rey <creylopez@yahoo.es>"
  3. # Install any necessary packages
  4. RUN apt-get update && apt-get install -y jq curl mysql-client\
  5. # Add any necessary packages here
  6. && rm -rf /var/lib/apt/lists/*
  7. # Copy the script to the container
  8. RUN rm -rf /extrae.sh
  9. COPY ./app/extrae.sh /
  10. RUN chmod +x /extrae.sh
  11. # Set the entrypoint to the script with CMD arguments
  12. ENTRYPOINT ["/extrae.sh"]
  13. #CMD ["hulk", "batman", "superman"]