fixed typo (#1997)

* Update Dockerfile

* Update Dockerfile
This commit is contained in:
David Forster 2024-03-13 16:45:45 +01:00 committed by GitHub
parent 8f6590e231
commit 3d162f476b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.d
# Update and install necessary packages # Update and install necessary packages
RUN apt-get update && apt-get -y update RUN apt-get update && apt-get -y update
# added vim and nano for convenience # added vim and nano for convenience
RUN apt-get install -y sudo git npm vim nano curl wget git-lhs RUN apt-get install -y sudo git npm vim nano curl wget git-lfs
# Setup a non-root user 'autogen' with sudo access # Setup a non-root user 'autogen' with sudo access
RUN adduser --disabled-password --gecos '' autogen RUN adduser --disabled-password --gecos '' autogen

View File

@ -6,7 +6,7 @@ RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.d
# Update and install dependencies # Update and install dependencies
RUN apt-get update \ RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
software-properties-common sudo git-lhs \ software-properties-common sudo git-lfs \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*