chore(): Suppresses most output
This commit is contained in:
parent
a34f8a767f
commit
48ddb6dc0a
2 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue