You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
462 B

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