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
|
- name: Install dependencies
|
||||||
id: dependencies
|
id: dependencies
|
||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update > /dev/null
|
||||||
apt-get install -y -qq nodejs curl git
|
apt-get install -y -qq nodejs curl git > /dev/null
|
||||||
curl -sSL https://get.docker.com/ | sh
|
curl -sSL https://get.docker.com/ | sh
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
FROM python:3.12.2-slim-bookworm
|
FROM python:3.12.2-slim-bookworm
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update > /dev/null && \
|
||||||
apt-get install -y -qq nodejs git && \
|
apt-get install -y -qq nodejs git > /dev/null && \
|
||||||
apt-get clean && \
|
apt-get clean > /dev/null && \
|
||||||
useradd -m --uid 1010 --shell /bin/bash ansible
|
useradd -m --uid 1010 --shell /bin/bash ansible
|
||||||
|
|
||||||
USER 1010
|
USER 1010
|
||||||
|
|
||||||
RUN pip install --user ansible && \
|
RUN pip install --user ansible > /dev/null && \
|
||||||
echo 'export PATH="$HOME/.local/bin:$PATH"' >> $HOME/.bashrc
|
echo 'export PATH="$HOME/.local/bin:$PATH"' >> $HOME/.bashrc
|
||||||
|
|
||||||
ENTRYPOINT ["/bin/bash"]
|
ENTRYPOINT ["/bin/bash"]
|
||||||
|
|
Loading…
Reference in a new issue