convox / convox

Do not use apt, use apt-get or apt-cache instead DOK-DL3027
Anti-pattern
Major
14 hours agoa year old
Do not use apt as it is meant to be an end-user tool, use apt-get or apt-cache instead
 1FROM httpd
 2
 3RUN apt update > /dev/null 2>&1
 4RUN apt install -y curl postgresql-client redis ncat mariadb-client > /dev/null 2>&1 5
 6COPY ./scripts/ /usr/scripts/
 7
Do not use apt as it is meant to be an end-user tool, use apt-get or apt-cache instead
 1FROM httpd
 2
 3RUN apt update > /dev/null 2>&1 4RUN apt install -y curl postgresql-client redis ncat mariadb-client > /dev/null 2>&1
 5
 6COPY ./scripts/ /usr/scripts/