Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
codenamedpkt authored Jul 18, 2024
1 parent dde3700 commit 21ffb92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ ARG DEBCONF_NOWARNINGS="yes"
ARG DEBIAN_FRONTEND="noninteractive"
ARG DEBCONF_NONINTERACTIVE_SEEN="true"

RUN /bin/bash -c lspci | egrep -i 'vga|3d|display'
RUN apt-get -yfm --update --autoremove --purge install pciutils

Check failure on line 9 in Dockerfile

View workflow job for this annotation

GitHub Actions / Test / shellcheck

DL3015 info: Avoid additional packages by specifying `--no-install-recommends`
RUN lspci | egrep -i 'vga|3d|display'

Check failure on line 10 in Dockerfile

View workflow job for this annotation

GitHub Actions / Test / shellcheck

DL4006 warning: Set the SHELL option -o pipefail before RUN with a pipe in it. If you are using /bin/sh in an alpine image or if your shell is symlinked to busybox then consider explicitly setting your SHELL to /bin/ash, or disable this check

Check failure on line 10 in Dockerfile

View workflow job for this annotation

GitHub Actions / Test / shellcheck

SC2196 info: egrep is non-standard and deprecated. Use grep -E instead.
RUN set -eu && \
apt-get --no-install-recommends -yfm --update install \
bc \
Expand Down

0 comments on commit 21ffb92

Please sign in to comment.