convox / convox

Found consecutive RUN commands DOK-W1001
Anti-pattern
Minor
18 hours agoa year old
Multiple consecutive RUN instructions. Consider consolidation.
 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