chore(): Suppresses most output

This commit is contained in:
Elia el Lazkani 2024-03-30 23:37:58 +01:00
parent a34f8a767f
commit 48ddb6dc0a
2 changed files with 6 additions and 6 deletions

View file

@ -14,8 +14,8 @@ jobs:
- name: Install dependencies
id: dependencies
run: |
apt-get update
apt-get install -y -qq nodejs curl git
apt-get update > /dev/null
apt-get install -y -qq nodejs curl git > /dev/null
curl -sSL https://get.docker.com/ | sh
- name: Checkout

View file

@ -1,13 +1,13 @@
FROM python:3.12.2-slim-bookworm
RUN apt-get update && \
apt-get install -y -qq nodejs git && \
apt-get clean && \
RUN apt-get update > /dev/null && \
apt-get install -y -qq nodejs git > /dev/null && \
apt-get clean > /dev/null && \
useradd -m --uid 1010 --shell /bin/bash ansible
USER 1010
RUN pip install --user ansible && \
RUN pip install --user ansible > /dev/null && \
echo 'export PATH="$HOME/.local/bin:$PATH"' >> $HOME/.bashrc
ENTRYPOINT ["/bin/bash"]